Explanation.md (#30081)

Explained and simplified a few core concepts
This commit is contained in:
Tanmay Arora
2019-02-21 05:20:29 +05:30
committed by Manish Giri
parent fe37a0a998
commit aaba4c0987

View File

@ -12,8 +12,8 @@ The basic syntax is:
```python ```python
counter = 0 counter = 0
while counter < 10: while counter < 10:
# Execute the block of code here as # Execute the block of code here as long as counter is less than 10
# long as counter is less than 10 # To prevent an infinite loop, counter is incremented by 1 on each iteration
counter += 1 counter += 1
``` ```