1
2
3
4
5
6
7
import random
L = []
for i in range(0, 10):
L.append(random.randint(0,100))
print(L)
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX