Jak uzyskać losowy int między dwiema liczbami Python
import random
print(random.randint(10,100))
this will output somthing between 10 and 100
Amused Ape
import random
print(random.randint(10,100))
this will output somthing between 10 and 100
import random
random.choice([-40, 40])