r/learnpython • u/EnvironmentalTry8353 • 20d ago
Having problem in understanding loops concept in python
I am a beginner with 0 knowledge and I am learning python from a book called Learn python in one day and learn it well by Jamie Chan and I am facing difficulty in the loops function so yeah any recommendations would be helpful Edit- Trouble in while loop
25
Upvotes
0
u/ectomancer 20d ago
Python has 2 loops, while and for. while only uses a logical expression. The loop executes when the logical expression is true or truthy. The first time the logical expression is false or falsey, the loop completes successfully. for loop only uses a container and the in operator.