if all you’re trying to do is store a random number from 1-6 inside the variable die
then:
import random
die = random.randint(1,6)
solved How can this Python code homework be completed? [closed]
if all you’re trying to do is store a random number from 1-6 inside the variable die
then:
import random
die = random.randint(1,6)
solved How can this Python code homework be completed? [closed]