Skip to content

Commit 856d437

Browse files
Add files via upload
1 parent 5912473 commit 856d437

2 files changed

Lines changed: 23 additions & 0 deletions

File tree

week_5/leacture 06.pptx

989 KB
Binary file not shown.

week_5/sixth.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
for i in range(1,11):
2+
print("Hello World")
3+
4+
for i in "apple":
5+
print(i)
6+
7+
8+
mylist=[10,20,30,40,50,60,70,80,90,100]
9+
for list in mylist:
10+
print(list)
11+
12+
13+
for i in range(11):
14+
num=input("Enter Number:")
15+
print(num)
16+
17+
i =0
18+
while(i<=5):
19+
print(i)
20+
i+=1
21+
22+
23+

0 commit comments

Comments
 (0)