Skip to content

Commit bdbe691

Browse files
authored
Merge pull request #21 from Paras-code/patch-2
Create loop.py
2 parents bdc4447 + d906635 commit bdbe691

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

loop.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
i = 0
2+
while(i<=10):
3+
print(i)
4+
i = i + 1
5+
6+
7+
dic = {
8+
"Name" : "Avaneesh",
9+
"Course":"Modern genetics",
10+
"Marks" : 86,
11+
"Credit hours" : 4
12+
13+
}
14+
for item in dic:
15+
print(item)
16+

0 commit comments

Comments
 (0)