berbagai jenis loop python

#loopies hehe
for x in range(10): #for loops.
  print("For loop")
while True: #while loop.
  print("While loop")
somewhatoriginal