实验任务一
task1.py
实验源码:
1 import random 2 3 print('用列表存储随机整数:') 4 lst = [random.randint(0,100) for i in range(5)] 5 print(lst) 6 7 print('\n用集合存储随机整数:') 8 s1 = {random.randint(0,100) for i in range(5)} 9 print(s1) 10 11 print('\n用集合存储随机整数:') 12 s2 = set() 13 while len(s2) < 5: 14 s2.add(random.randint(0,100)) 15 print(s2)
实验结果:
问题1:random.randint(0,100)生成的随机整数范围是0~100,可以取到100
问题2:list(range(5))生成的有序序列的范围是0~4,不包括5;
list(range(1,5))生成的有序序列的范围是1~4,不包括5
问题3:len(s1)一定是5
问题4:len(s2)一定是5
实验任务2
task2_1.py
实验源码:
1 #列表遍历 2 lst = [55, 92, 88, 79, 96] 3 4 #遍历方式1:使用while + 索引 5 i = 0 6 while i < len(lst): 7 print(lst[i], end = ' ') 8 i += 1 9 10 print() 11 12 #遍历方式2:使用for + 索引 13 for i in range(len(lst)): 14 print(lst[i], end = ' ') 15 print() 16 17 # 遍历方式3:使用for...in 18 for i in lst: 19 print(i , end = ' ') 20 print()
实验结果:
task2_2.py
实验源码:
1 #字典遍历 2 book_info = {'isbn': '978-7-5356-8297-0', 3 '书名':'白鲸记', 4 '作者':'克里斯多夫.夏布特', 5 '译者':'高文婧', 6 '出版社':'湖南美术出版社', 7 '售价':82 8 } 9 10 #遍历key-value对:实现方式1 11 for key, value in book_info.items(): 12 print(f'{key}:{value}') 13 print() 14 15 #遍历key-value对:实现方式2 16 for item in book_info.items(): 17 print(f'{item[0]}:{item[1]}') 18 print() 19 20 #遍历值:实现方式1 21 for value in book_info.values(): 22 print(value, end = ' ') 23 print() 24 25 #遍历值:实现方式2 26 for key in book_info.keys(): 27 print(book_info[key], end = ' ')
实验结果:
task2_3.py
实验源码:
1 book_infos = [{'书名': '昨日的世界', '作者': '斯蒂芬.茨威格'}, 2 {'书名': '局外人', '作者': '阿尔贝.加缪'}, 3 {'书名': '设计中的设计', '作者': '原研哉'}, 4 {'书名': '万历十五年', '作者': '黄仁宇'}, 5 {'书名': '刀锋', '作者': '毛姆'} 6 ] 7 for i in range(len(book_infos)): 8 x=book_infos[i] 9 for key,value in x.items(): 10 if key =='书名': 11 print(f'{i+1}.《{x[key]}》,',end='') 12 if key =='作者': 13 print(f'{x[key]}')
实验结果:
实验任务3
实验源码:
1 text='''The Zen of Python, by Tim Peters 2 3 Beautiful is better than ugly. 4 Explicit is better than implicit. 5 Simple is better than complex. 6 Complex is better than complicated. 7 Flat is better than nested. 8 Sparse is better than dense. 9 Readability counts. 10 Special cases aren't special enough to break the rules. 11 Although practicality beats purity. 12 Errors should never pass silently. 13 Unless explicitly silenced. 14 In the face of ambiguity, refuse the temptation to guess. 15 There should be one-- and preferably only one --obvious way to do it.lst 16 Although that way may not be obvious at first unless you're Dutch. 17 Now is better than never. 18 Although never is often better than *right* now. 19 If the implementation is hard to explain, it's a bad idea. 20 If the implementation is easy to explain, it may be a good idea. 21 Namespaces are one honking great idea -- let's do more of those!''' 22 x = text.lower() 23 y = 'abcdefghijklmnopqrstuvwxyz' 24 z = { } 25 for i in y: 26 if i in x: 27 z.update({i:x.count(i)}) 28 lst1=list(z.items()) 29 lst2=[(value,key) for key,value in lst1] 30 for value,key in sorted(lst2,reverse=True): 31 print(f'{key}:{value}')
实验结果:
实验任务4
实验源码:
1 print('-'*22,'专业代码信息','-'*22) 2 code_majors = {'8326':'地信类','8329':'计算机类','8330':'气科类','8336':'防灾工程','8345':'海洋科学','8382':'气象工程'} 3 for key,value in code_majors.items(): 4 print(f'{key}:{value}') 5 print('-'*22,'学生专业查询','-'*22) 6 while True: 7 numbers = input('请输入学号:') 8 if numbers == '#': 9 print('查询结束') 10 break 11 keys = list(code_majors.keys()) 12 if numbers[4:8] in keys: 13 print(f'专业是:{code_majors[numbers[4:8]]}') 14 else:print('不在这些专业里')
实验结果:
实验任务5
实验源码:
1 import random 2 lucky_day=random.randint(1,31) 3 print('猜猜2023年5月哪一天会是你的lucky day') 4 day=int(input('你有三次机会,猜吧(1~31):')) 5 i=0 6 while i<2: 7 if day<1 or day>31: 8 print('地球上没有这一天,你是外星人吗?') 9 day=int(input('再猜:')) 10 i+=1 11 if day<lucky_day: 12 print('猜早啦,你的lucky day还没到呢') 13 day=int(input('再猜:')) 14 i+=1 15 if day>lucky_day: 16 print('猜晚啦,你的lucky day已经过去啦') 17 day=int(input('再猜:')) 18 i+=1 19 if day==lucky_day: 20 print('哇哦,猜中啦') 21 i+=1 22 if day!=lucky_day: 23 print('哇哦,次数用光啦!') 24 print(f'偷偷告诉你,你的lucky_day是{lucky_day}号。good luck')
实验结果:
实验任务6
实验源码:
1 datas = {'2049777001': ['篮球', '羽毛球', '美食', '漫画'], 2 '2049777002': ['音乐', '旅行'], 3 '2049777003': ['马拉松', '健身', '游戏'], 4 '2049777004': [], 5 '2049777005': ['足球', '阅读'], 6 '2049777006': ['发呆', '闲逛'], 7 '2049777007': [], 8 '2049777008': ['书法', '电影'], 9 '2049777009': ['音乐', '阅读', '电影', '漫画'], 10 '2049777010': ['数学', '推理', '音乐', '旅行'] 11 } 12 ls=[] 13 for value in datas.values(): 14 for i in value: 15 ls.append(i) 16 hobby={} 17 for h in ls: 18 if h not in hobby: 19 hobby[h]=1 20 else: 21 hobby[h]+=1 22 hobby1=list(zip(hobby.values(),hobby.keys())) 23 hs0 = sorted(hobby1,reverse=True) 24 for i in hs0: 25 print(f'{i[1]}:{i[0]}')
实验结果:
实验任务7
task7_1.py
实验源码:
1 """ 2 家用电器销售系统 3 v1.3 4 """ 5 #欢迎信息 6 print('欢迎使用家用电器销售系统!') 7 8 #商品数据初始化 9 products=[ 10 ['0001','电视机','海尔',5999.00,20], 11 ['0002','冰箱','西门子',6998.00,15], 12 ['0003','洗衣机','小天鹅',1999.00,10], 13 ['0004','空调','格力',3900.00,0], 14 ['0005','热水器','格力',688.00,30], 15 ['0006','笔记本','联想',5699.00,10], 16 ['0007','微波炉','苏泊尔',480.00,33], 17 ['0008','投影仪','松下',1250.00,12], 18 ['0009','吸尘器','飞利浦',999.00,9] 19 ] 20 21 #初始化用户购物车 22 products_cart=[] 23 24 option=input('请选择您的操作:1-查看商品;2-购物;3-查看购物车;其他-结账') 25 while option in['1','2','3',]: 26 if option=='1': 27 #产品信息列表 28 print('产品和价格信息如下') 29 print('***********************************************************') 30 print('%-10s' % '编号', '%-10s' % '名称', '%-10s' % '品牌', '%-10s' % '价格', '%-10s' % '库存数量') 31 print('-----------------------------------------------------------') 32 for i in range(len(products)): 33 print('%-10s'%products[i][0],'%-10s'%products[i][1],'%-10s'%products[i][2],'%10.2f'%products[i][3],'%10d'%products[i][4]) 34 35 print('-----------------------------------------------------------') 36 elif option=='2': 37 product_id=input('请输入您要购买的产品编号:') 38 while product_id not in [item[0]for item in products]: 39 product_id=input('编号不存在,请重新输入您要购买的产品编号:') 40 count=int(input('请输入您要购买的产品数量:')) 41 while count > products[int(product_id)-1][4]: 42 count=input('数量超出库存。请重新输入您要购买的产品数量:') 43 44 if product_id not in [item[0] for item in products_cart]: 45 products_cart.append([product_id,count]) 46 else: 47 for i in range(len(products_cart)): 48 if products_cart[i][0]==product_id: 49 products_cart[i][1]+=count 50 51 #更新商品列表 52 for i in range(len(products)): 53 if products[i][0]==product_id: 54 products[i][4]-=count 55 56 else: 57 print('购物车信息如下:') 58 print('************************************') 59 print('%-10s'%'编号','%-10s'%'购买数量') 60 print('------------------------------------') 61 for i in range(len(products_cart)): 62 print('%-10s'%products_cart[i][0],'%6d'%products_cart[i][1]) 63 print('------------------------------------') 64 option=input('操作成功!请选择您的操作:1-查看商品;2-购物;3-查看购物车;其他-结账。') 65 if len(products_cart)>0: 66 amount=0 67 for i in range(len(products_cart)): 68 product_index=0 69 for j in range(len(products)): 70 if products[j][0]==products_cart[i][0]: 71 product_index=j 72 break 73 price=products[product_index][3] 74 count=products_cart[i][1] 75 amount+=price*count 76 if 5000 < amount <= 10000: 77 amount=amount*0.95 78 elif 10000 < amount <= 20000: 79 amount = amount * 0.9 80 elif 20000 < amount : 81 amount = amount * 0.85 82 else: 83 amount=amount*1 84 print('购买成功,您需要支付%8.2f元'%amount) 85 print('谢谢您的光临,下次再见!')
实验结果:
task7_2.py
实验源码:
1 """ 2 家用电器销售系统 3 v1.3 4 """ 5 #欢迎信息 6 print('欢迎使用家用电器销售系统!') 7 8 #商品数据初始化 9 products=[ 10 ['0001','电视机','海尔',5999.00,20], 11 ['0002','冰箱','西门子',6998.00,15], 12 ['0003','洗衣机','小天鹅',1999.00,10], 13 ['0004','空调','格力',3900.00,0], 14 ['0005','热水器','格力',688.00,30], 15 ['0006','笔记本','联想',5699.00,10], 16 ['0007','微波炉','苏泊尔',480.00,33], 17 ['0008','投影仪','松下',1250.00,12], 18 ['0009','吸尘器','飞利浦',999.00,9] 19 ] 20 21 #初始化用户购物车 22 products_cart=[] 23 24 option=input('请选择您的操作:1-查看商品;2-购物;3-查看购物车;其他-结账') 25 while option in['1','2','3',]: 26 if option=='1': 27 #产品信息列表 28 print('产品和价格信息如下') 29 print('***********************************************************') 30 print('%-10s' % '编号', '%-10s' % '名称', '%-10s' % '品牌', '%-10s' % '价格', '%-10s' % '库存数量') 31 print('-----------------------------------------------------------') 32 for i in range(len(products)): 33 print('{:<10}'.format(products[i][0]), '{:<10}'.format(products[i][1]), '{:<10}'.format(products[i][2]), 34 '{:<10.2f}'.format(products[i][3]), 35 '{:>10}'.format(products[i][4])) 36 print('-----------------------------------------------------------') 37 elif option=='2': 38 product_id=input('请输入您要购买的产品编号:') 39 while product_id not in [item[0]for item in products]: 40 product_id=input('编号不存在,请重新输入您要购买的产品编号:') 41 count=int(input('请输入您要购买的产品数量:')) 42 while count > products[int(product_id)-1][4]: 43 count=input('数量超出库存。请重新输入您要购买的产品数量:') 44 45 if product_id not in [item[0] for item in products_cart]: 46 products_cart.append([product_id,count]) 47 else: 48 for i in range(len(products_cart)): 49 if products_cart[i][0]==product_id: 50 products_cart[i][1]+=count 51 52 #更新商品列表 53 for i in range(len(products)): 54 if products[i][0]==product_id: 55 products[i][4]-=count 56 57 else: 58 print('购物车信息如下:') 59 print('************************************') 60 print('{:<10} {:<10} '.format('编号','购买数量')) 61 print('------------------------------------') 62 for i in range(len(products_cart)): 63 print('{:10s}'.format(products_cart[i][0]),'{:6d}'.format(products_cart[i][1])) 64 print('------------------------------------') 65 option=input('操作成功!请选择您的操作:1-查看商品;2-购物;3-查看购物车;其他-结账。') 66 if len(products_cart)>0: 67 amount=0 68 for i in range(len(products_cart)): 69 product_index=0 70 for j in range(len(products)): 71 if products[j][0]==products_cart[i][0]: 72 product_index=j 73 break 74 price=products[product_index][3] 75 count=products_cart[i][1] 76 amount+=price*count 77 if 5000 < amount <= 10000: 78 amount=amount*0.95 79 elif 10000 < amount <= 20000: 80 amount = amount * 0.9 81 elif 20000 < amount : 82 amount = amount * 0.85 83 else: 84 amount=amount*1 85 print('购买成功,您需要支付%8.2f元'%amount) 86 print('谢谢您的光临,下次再见!')
实验结果:
实验任务8
task8_1.py
实验源码:
1 """ 2 家用电器销售系统 3 v1.4 4 """ 5 6 #欢迎信息 7 print('欢迎使用家用电器销售系统!') 8 9 #商品数据初始化 10 products=[ 11 {'id':'0001','name':'电视机','brand':'海尔','price':5999.00,'count':20}, 12 {'id':'0002','name':'冰箱','brand':'西门子','price':6998.00,'count':15}, 13 {'id':'0003','name':'洗衣机','brand':'小天鹅','price':1999.00,'count':10}, 14 {'id':'0004','name':'空调','brand':'格力','price':3900.00,'count':0}, 15 {'id':'0005','name':'热水器','brand':'格力','price':688.00,'count':30}, 16 {'id':'0006','name':'笔记本','brand':'联想','price':5699.00,'count':10}, 17 {'id':'0007','name':'微波炉','brand':'苏泊尔','price':480.00,'count':33}, 18 {'id':'0008','name':'投影仪','brand':'松下','price':1250.00,'count':12}, 19 {'id':'0009','name':'吸尘器','brand':'飞利浦','price':999.00,'count':9} 20 ] 21 22 #初始化用户购物车 23 products_cart=[] 24 25 option=input('请选择您的操作:1-查看商品;2-购物;3-查看购物车;其他-结账') 26 while option in['1','2','3',]: 27 if option=='1': 28 print('产品和价格信息如下') 29 print('******************************************************************') 30 print('%-10s' % '编号', '%-10s' % '名称', '%-10s' % '品牌', '%-10s' % '价格', '%-10s' % '库存数量') 31 print('------------------------------------------------------------------') 32 for i in range(len(products)): 33 print('%-10s'%products[i]['id'],'%-10s'%products[i]['name'],'%-10s'%products[i]['brand'],'%10.2f'%products[i]['price'],'%10d'%products[i]['count']) 34 print('------------------------------------------------------------------') 35 elif option == '2': 36 product_id = input('请输入您要购买的产品编号:') 37 while product_id not in [item['id'] for item in products]: 38 pro_id = input('编号不存在,请重新输入您要购买的产品编号:') 39 count=int(input('请输入您要购买的产品数量:')) 40 while count > products[int(product_id)-1]['count']: 41 count=input('数量超出库存。请重新输入您要购买的产品数量:') 42 if product_id not in [item['id'] for item in products_cart]: 43 products_cart.append({'id':product_id,'count':count}) 44 else: 45 for i in range(len(products_cart)): 46 if products_cart[i].get('id')==product_id: 47 products_cart[i]['count']+=count 48 49 for i in range(len(products)) : 50 if products[i]['id']==product_id: 51 products[i]['count']-=count 52 else: 53 print('购物车信息如下:') 54 print('******************************************************************') 55 print('%-10s'%'编号','%-10s'%'购买数量') 56 print('------------------------------------------------------------------') 57 for i in range(len(products_cart)): 58 print('%-10s'%products_cart[i]['id'],'%6d'%products_cart[i]['count']) 59 print('------------------------------------------------------------------') 60 option = input('操作成功!请选择您的操作:1-查看商品;2-购物;3-查看购物车;其他-结账。') 61 62 if len(products_cart)>0: 63 amount=0 64 for i in range(len(products_cart)): 65 pro_index=0 66 for j in range(len(products)): 67 if products[j]['id']==products_cart[i]['id']: 68 product_index=j 69 break 70 price=products[product_index]['price'] 71 count=products_cart[i]['count'] 72 amount+=price*count 73 if 5000 < amount <= 10000: 74 amount = amount * 0.95 75 elif 10000 < amount <= 20000: 76 amount = amount * 0.9 77 elif 20000 < amount: 78 amount = amount * 0.85 79 else: 80 amount = amount * 1 81 print('购买成功,您需要支付%8.2f元' % amount) 82 print('谢谢您的光临,下次再见!')
实验结果:
task8_2.py
实验源码:
1 """ 2 家用电器销售系统 3 v1.4 4 """ 5 6 #欢迎信息 7 print('欢迎使用家用电器销售系统!') 8 9 #商品数据初始化 10 products=[ 11 {'id':'0001','name':'电视机','brand':'海尔','price':5999.00,'count':20}, 12 {'id':'0002','name':'冰箱','brand':'西门子','price':6998.00,'count':15}, 13 {'id':'0003','name':'洗衣机','brand':'小天鹅','price':1999.00,'count':10}, 14 {'id':'0004','name':'空调','brand':'格力','price':3900.00,'count':0}, 15 {'id':'0005','name':'热水器','brand':'格力','price':688.00,'count':30}, 16 {'id':'0006','name':'笔记本','brand':'联想','price':5699.00,'count':10}, 17 {'id':'0007','name':'微波炉','brand':'苏泊尔','price':480.00,'count':33}, 18 {'id':'0008','name':'投影仪','brand':'松下','price':1250.00,'count':12}, 19 {'id':'0009','name':'吸尘器','brand':'飞利浦','price':999.00,'count':9} 20 ] 21 22 #初始化用户购物车 23 products_cart=[] 24 25 option=input('请选择您的操作:1-查看商品;2-购物;3-查看购物车;其他-结账') 26 while option in['1','2','3',]: 27 if option=='1': 28 print('产品和价格信息如下') 29 print('******************************************************************') 30 print('{:<10} {:<10} {:<10} {:<10} {:<10}'.format('编号','名称','品牌','价格','库存数量')) 31 print('------------------------------------------------------------------') 32 for i in range(len(products)): 33 print('{:<10}'.format(products[i]['id']), '{:<10}'.format(products[i]['name']), '{:<10}'.format(products[i]['brand']), 34 '{:<10.2f}'.format(products[i]['price']), 35 '{:>10}'.format(products[i]['count'])) 36 print('------------------------------------------------------------------') 37 elif option == '2': 38 product_id = input('请输入您要购买的产品编号:') 39 while product_id not in [item['id'] for item in products]: 40 pro_id = input('编号不存在,请重新输入您要购买的产品编号:') 41 count=int(input('请输入您要购买的产品数量:')) 42 while count > products[int(product_id)-1]['count']: 43 count=input('数量超出库存。请重新输入您要购买的产品数量:') 44 if product_id not in [item['id'] for item in products_cart]: 45 products_cart.append({'id':product_id,'count':count}) 46 else: 47 for i in range(len(products_cart)): 48 if products_cart[i].get('id')==product_id: 49 products_cart[i]['count']+=count 50 51 for i in range(len(products)) : 52 if products[i]['id']==product_id: 53 products[i]['count']-=count 54 else: 55 print('购物车信息如下:') 56 print('******************************************************************') 57 print('{:<10} {:<10} '.format('编号','购买数量')) 58 print('------------------------------------------------------------------') 59 for i in range(len(products_cart)): 60 print('{:10s}'.format(products_cart[i]['id']),'{:6d}'.format(products_cart[i]['count'])) 61 print('------------------------------------------------------------------') 62 option = input('操作成功!请选择您的操作:1-查看商品;2-购物;3-查看购物车;其他-结账。') 63 64 if len(products_cart)>0: 65 amount=0 66 for i in range(len(products_cart)): 67 pro_index=0 68 for j in range(len(products)): 69 if products[j]['id']==products_cart[i]['id']: 70 product_index=j 71 break 72 price=products[product_index]['price'] 73 count=products_cart[i]['count'] 74 amount+=price*count 75 if 5000 < amount <= 10000: 76 amount = amount * 0.95 77 elif 10000 < amount <= 20000: 78 amount = amount * 0.9 79 elif 20000 < amount: 80 amount = amount * 0.85 81 else: 82 amount = amount * 1 83 print('购买成功,您需要支付%8.2f元' % amount) 84 print('谢谢您的光临,下次再见!')
实验结果:
标签:语句,count,product,组合,数据类型,cart,products,print,id From: https://www.cnblogs.com/gaoyue124/p/17332431.html