Loops
Does anyone now how to loop something?
Ok one last question about loops. What’s the difference between range and xrange?
@MATTHEWBECHTEL range is python 3, xrange is py 2
which language? I could probably give you an answer. Also, could you specify which type of loop? There are different loops, including for loops and while loops. Thank you!
#this is repeating infinitely
x = 2
while x > 1:
print("Hi world.")
#this is repeating 10 times
x = 10
while x > 0:
print("Hi world")
x = x - 1
Ok umm also is there a way to use Time.Sleep(1) but with a decimal as an time interval? For example: Time.Sleep(1.65) It would be super useful.
@MATTHEWBECHTEL It should work just as you typed it. Is it not working?
If not, try a lowercase 'T': time.sleep(value)
No it is, but I’m just wondering if decimals work in time.sleep @Geocube101 like time.sleep(.89)
@MATTHEWBECHTEL I think decimals work. Try it and see! If not,
import pygame
pygame.time.wait(10) # waits 10 ms
may work (not sure if it works on just python repls though)
Yes, I just realized that they work! Thank you. @ArchieMaclean
Python.
What language are you wanting to use?
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