4 lines
73 B
Plaintext
4 lines
73 B
Plaintext
|
|
import random
|
||
|
|
b = [random.randint(0, 99) for i in range(20)]
|
||
|
|
print(b)
|