For loop
for k in range(1, 12, 3):
print(k)
While loop
i = int(input("Enter the number: "))
print(i)
while(i<=38):
i = int(input("Enter the number: "))
print(i)
print("Done with the loop")
opposite
count = 5
while (count > 0):
print(count)
count = count - 1
Notionian 2.0