Skip to content

Commit 6d5625a

Browse files
authored
Update ForLoop.md
1 parent 92b1cf3 commit 6d5625a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Basic/ForLoop.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Syntax:
1313
for variable in (iterable object) :
1414
print(variable)
1515
```
16-
Normally for range function contain three :three: different parameter
16+
Normally for range function contain three different parameter
1717
1. starting number
1818
2. Stop number+1
1919
3. difference or step number(optional if not given then it will increment by 1)
@@ -109,7 +109,7 @@ Output:
109109
9
110110
3
111111
```
112-
### Different Example on For loop :memo:
112+
### Some Examples On For Loop
113113

114114
prints out the numbers 0,1,2,3,4,5,6
115115
```python

0 commit comments

Comments
 (0)