loops
- loops allow us to execute block of code multiple times
- in python we have two types of loops
- while
- for
- Refer Here for looping
While
- Syntax
while <conditional-expression>:
...
...
...
- Refer Here for the notebook
Write our first python program
- Create a file with any name with extension
.py - Refer Here for problem
- To run the program from Terminal
