+ 3
What's the problem ? How to make it work ?
from random import * a=random.randint(10) print(a)
1 Answer
+ 5
In this code there are 2 issues:
in line 1 and line 2 (fix):
import random #to use it later
a = random.randint(0,10) #random.randint function requires two arguments: min and max
print(a)