2022年4月23日
摘要: task1.py import random print('用列表存储随机整数: ') ls = [random.randint(1, 100) for i in range(5)] print(ls) print('\n用集合存储随机整数: ') s1 = {random.randint(1,10 阅读全文
posted @ 2022-04-23 12:53 好运来。 阅读(37) 评论(2) 推荐(0) 编辑