I use time.sleep for lots of reasons But how do I use a time.sleep on only 1 variable? Is there a:
import time
time.sleep(j(10)) # <- Focus Here
Without me knowing Do I have to use another command? Or is it not available on python at all?
I use time.sleep for lots of reasons But how do I use a time.sleep on only 1 variable? Is there a:
import time
time.sleep(j(10)) # <- Focus Here
Without me knowing Do I have to use another command? Or is it not available on python at all?
time.sleep will have python pause for the amount of time that you say. It will pause the entire program, so using time.sleep won't work on one variable. I'm assuming you want to maybe stop working on one variable but continuing working with another? Since python goes line by line through your code you would just stop writing code that effects the variable. Then once you want to start working on it again you can start writing code that impacts it again.