-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_17loop.py
More file actions
51 lines (31 loc) · 669 Bytes
/
_17loop.py
File metadata and controls
51 lines (31 loc) · 669 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# name="Abhishek"
# for i in name:
# print(i)
# if(i=="b"):
# print("This is somethig special!")/
# colors=["Red","Yellow","Green","Blue"]
# for color in colors:
# print(color)
# for i in color:
# print(i)
# for i in range(5):
# print(i+1)
# for i in range(1,20001):
# print(i)
# for i in range(1,12,3):
# print(i)
# i=0
# while(i<=3):
# print(i)
# i=i+1
# i=int(input("Enter the number:"))
# while(i<=38):
# i=int(input("Enter the number:"))
# print(i)
# print("Done with the loop")
# count=-5
# while(count>0):
# print(count)
# count=count-1
# else:
# print("I am inside else")