① Python怎么实现生成一个拥有100个数的随机整数数组,数值在1到100之间
import random
print([random.randint(1,100) for i in range(100)])