SAKURA-QiQi

导航

2022年4月24日 #

实验三

摘要: import random print('用列表存储随机整数: ') ls = [random.randint(1, 100) for i in range(5)] print(ls) print('\n用集合存储随机整数: ') s1 = {random.randint(1,100) for i 阅读全文

posted @ 2022-04-24 10:43 QiQi-sakura 阅读(26) 评论(2) 推荐(0) 编辑