2023年4月26日
摘要: task1.py import random print('用列表存储随机整数: ') lst = [random.randint(0, 100) for i in range(5)] print(lst) print('\n用集合存储随机整数: ') s1 = {random.randint(0, 阅读全文
posted @ 2023-04-26 19:57 张瀚予 阅读(8) 评论(0) 推荐(0) 编辑