cara membuat loop python
loop = True #make variable loop
while loop: #makes the loop
print('Loop Worked')#this is your script for the loop
Cool Kitty the Programmer
loop = True #make variable loop
while loop: #makes the loop
print('Loop Worked')#this is your script for the loop
x = True
while x is True:
print("you got a loop!")
for number in range(10):
print(number)
for objorchar in MyArray:
print("foo!")