2.16

世梦發表於2024-10-27

from random import sample
from numpy.random import randint
a = sample(range(10), 5)
b = randint(0, 10, 5)
print(a); print(b)