Python中可以实现随机生成1-100之间浮点数的语句是?
print(random.uniform(1,100))
print(random.randint(1,100))
print(random.sample(1,100))
print(random.shuffle(1,100))