摘要: # task1.py import random print('用列表存储随机整数: ') Is = [random.randint(1,100)for i in range(5)] print(Is) print('\n用集合存储随机整数:') s1 = {random.randint(1,100 阅读全文
posted @ 2022-05-01 22:43 10309 阅读(28) 评论(2) 推荐(0) 编辑