Wie man zufällig in zwei Zahlen Python bekommt
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
from random import randrange
print(randrange(10))
from random import randrange
print(randrange(10))