# does 10 times
for n in range(10):
print(n)
myarray = ["a","b","c"]
# repeats for each item in the array
for item in myarray:
print(item)
x = 0
# conditional loop
while x<100:
print(x)
x+= 1
# loop forever (don't do this unless you know what you're doing, a
# nd you're limiting how fast you can go through it)
while True:
print("oh dear, repl crashed")
Does anyone now how to loop something?
python:
Please upvote if this helps :)
I will try it. Thanks. @ArchieMaclean
Hm. I am not sure if it is perfect but definitely a nice start. Thank you. @ArchieMaclean
@MATTHEWBECHTEL what do you mean? Is it not working for you?
No it’s fine but my keyboard is lagging. Thanks. @ArchieMaclean
@MATTHEWBECHTEL np
Is there a way to loop a certain Message though?
Never mind, I fixed it. But do you think it will lag itself to death before it reaches 10k messages? @ArchieMaclean
@MATTHEWBECHTEL as in a print statement? then do
@MATTHEWBECHTEL If you want to do a giant loop, you can use xrange, like:
IDK what you mean by 'Message' though