Untitled

 avatar
unknown
plain_text
a year ago
172 B
16
Indexable
#Codes

#printing hello 10 times
for i in range (10):
 print ('hello')

#while loop
while True:
  print('hello')

#while loop to print i 10 times
i=0
while i<10:
  print(i)
Editor is loading...
Leave a Comment