# 7.从0-99这个100个数中随机取出10个不重复的数import randomimport timewhile 1: time.sleep(1) print(random.sample(range(0, 99), k=10))