2023年6月25日
python randomly between two values?
If you want a random integer values between -40 and +40, then
import random
random.randint(-40, 40)
If you want to choose either -40 or +40, then
import random
random.choice([-40, 40])