Skip to content

Commit a7d0aee

Browse files
Update src/python/README.md
fixed a syntax error in python's src/Readme file
1 parent 13ad0c3 commit a7d0aee

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/python/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ For loop is used to iterate over arrays(list, tuple, set, dictionary) or strings
4141
mylist=("Iphone","Pixel","Samsung")
4242
for i in mylist:
4343
print(i)
44-
````
44+
`````
45+
4546
##### While:
4647

4748
While is also used to iterate a set of statements based on a condition. Usually while is preferred when number of iterations are not known in advance.
@@ -61,6 +62,7 @@ List is a collection which is ordered and can be changed. Lists are specified in
6162
mylist=["iPhone","Pixel","Samsung"]
6263
print(mylist)
6364
````
65+
6466
##### Tuple:
6567
Tuple is a collection which is ordered and can not be changed. Tuples are specified in round brackets.
6668

@@ -85,4 +87,4 @@ mydict = {
8587
"model": "iPhone 11"
8688
}
8789
print(mydict)
88-
````
90+
````

0 commit comments

Comments
 (0)