Python中可以实现随机生成1-20之间int类型整数的语句是?
print(random.int(1,20))
print(random.randint(1,20))
print(random.sample(1,20))
print(random.shuffle(1,20))