实验三
任务一
实验源码
运行结果截图

任务二
实验源码
1 lst = [55,92,88,79,96] 2 3 i = 0 4 while i < len(lst): 5 print(lst[i],end = '') 6 i += 1 7 print() 8 9 for i in range(len(lst)): 10 print(lst[i],end ='') 11 print() 12 13 for i in lst: 14 print(i,end = '') 15 print()
运行结果截图

实验源码
1 book_info = {'isbn': '978-7-5356-8297-0', 2 '书名': '白鲸记', 3 '作者': '克里斯多夫.夏布特', 4 '译者': '高文婧', 5 '出版社': '湖南美术出版社', 6 '售价':82} 7 for key ,value in book_info.items(): 8 print(f'{key}: {value}') 9 print() 10 11 for item in book_info.items(): 12 print(f'{item[0]}: {item[1]}') 13 print() 14 15 for value in book_info.values(): 16 print(value, end = ' ') 17 print() 18 19 for key in book_info.keys(): 20 print(book_info[key], end = ' ')
运行结果截图

实验源码
1 book_infos = [{'书名': '昨日的世界', '作者': '斯蒂芬.茨威格'}, 2 {'书名': '局外人', '作者': '阿尔贝.加缪'}, 3 {'书名': '设计中的设计', '作者': '原研哉'}, 4 {'书名': '万历十五年', '作者': '黄仁宇'}, 5 {'书名': '刀锋', '作者': '毛姆'} 6 ] 7 8 9 i = 0 10 while i < len(book_infos): 11 j = book_infos[i] 12 b = str(j['书名']) 13 j['书名'] = b.join('《》') 14 print(str(i+1)+'.'+j['书名']+','+j['作者']) 15 i += 1
运行结果截图

任务三
实验源码
1 text1=''' 2 The Zen of Python, by Tim Peters 3 4 Beautiful is better than ugly. 5 Explicit is better than implicit. 6 Simple is better than complex. 7 Complex is better than complicated. 8 Flat is better than nested. 9 Sparse is better than dense. 10 Readability counts. 11 Special cases aren't special enough to break the rules. 12 Although practicality beats purity. 13 Errors should never pass silently. 14 Unless explicitly silenced. 15 In the face of ambiguity, refuse the temptation to guess. 16 There should be one-- and preferably only one --obvious way to do it. 17 Although that way may not be obvious at first unless you're Dutch. 18 Now is better than never. 19 Although never is often better than *right* now. 20 If the implementation is hard to explain, it's a bad idea. 21 If the implementation is easy to explain, it may be a good idea. 22 Namespaces are one honking great idea -- let's do more of those! 23 ''' 24 text=text1.lower() 25 26 lst=[text.count(chr(i)) for i in range(97,97+26)] 27 d={} 28 for i in range(26): 29 d.update({chr(i+97):lst[i]}) 30 31 lst1=list(d.items()) 32 lst2=[(i,j) for j,i in lst1] 33 for i,j in sorted(lst2,reverse=True): 34 print(f'{j}:{i}')
运行结果截图

任务四
实验源码
1 code_majors={8326:'地信类', 2 8329:'计算机类', 3 8330:'气科类', 4 8336:'防灾工程', 5 8345:'海洋科学', 6 8382:'气象工程'} 7 8 print('专业代号信息'.center(50, '-')) 9 for key,value in code_majors.items(): 10 print(f'{key}:{value}') 11 12 print('学生专业查询'.center(50, '-')) 13 code=list(code_majors.keys()) 14 number = input('请输入学号:') 15 while number !='#': 16 number_code = int(number[4:8]) 17 if code_majors.get(number_code)==None: 18 print('不在这些专业中...') 19 else: 20 major=code_majors.get(number_code) 21 print('专业是:'+major) 22 number = input('请输入学号:') 23 24 print('查询结束...')
运行结果截图

任务五
实验源码
1 import random 2 xO = random.randint(1,31) 3 print('猜猜2023年5月哪一天是你的lucky day😀') 4 x=int(input('你有三次机会,猜吧(1-31):')) 5 if x == xO : 6 print('哇,猜中了🤣') 7 else: 8 for i in range(2): 9 if x>xO: 10 print('猜晚了,你的lucky day已经过了') 11 x = int(input('再猜(1-31):')) 12 elif x<xO: 13 print('猜早了,你的lucky day还没过呢') 14 x = int(input('再猜(1-31):')) 15 else: 16 print('哇,猜中了🤣') 17 break 18 else: 19 print('次数用光啦,偷偷告诉你,5月你的lucky day是',xO,'号.good luck')
运行结果截图

任务六
实验源码
1 datas={'2049777001':['篮球','羽毛球','美食','漫画'], 2 '2049777002':['音乐','旅行'], 3 '2049777003':['马拉松','健身','游戏'], 4 '2049777004':[], 5 '2049777005':['足球','阅读'], 6 '2049777006':['发呆','闲逛'], 7 '2049777007':[], 8 '2049777008':['书法','电影'], 9 '2049777009':['音乐','阅读','电影','漫画'], 10 '2049777010':['数学','推理','音乐','旅行']} 11 d={} 12 for i in datas.values(): 13 for j in range(len(i)): 14 d[i[j]]=d.get(i[j],0)+1 15 s=[(key,value) for (value,key) in d.items()] 16 s=sorted(s,reverse=True) 17 for i in s: 18 print(f'{i[1]}:{i[0]}')
运行结果截图

任务七
实验源码
1 """ 2 家用电器销售系统 3 v1.3 4 """ 5 #欢迎信息 6 print('欢迎使用家用电器销售系统!') 7 #商品数据初始化 8 products=[ 9 ['0001','电视机','海尔',5999.00,20], 10 ['0002','冰箱','西门子',6998.00,15], 11 ['0003','洗衣机','小天鹅',1999.00,10], 12 ['0004','空调','格力',3900.00,0], 13 ['0005','热水器','格力',688.00,30], 14 ['0006','笔记本','联想',5699.00,10], 15 ['0007','微波炉','苏泊尔',480.00,33], 16 ['0008','投影仪','松下',1250.00,12], 17 ['0009','吸尘器','飞利浦',999.00,9], 18 ] 19 #初始化用户购物车 20 products_cart=[] 21 option=input('请选择您的操作:1-查看商品;2-购物;3-查看购物车;其他-结账') 22 while option in ['1','2','3']: 23 if option=='1': 24 #产品信息列表 25 print('产品和价格信息如下:') 26 print('**********************************************************') 27 print('{:<10} {:<10} {:<10} {:<10} {:<10}'.format('编号','名称','品牌','价格','库存数量')) 28 print('----------------------------------------------------------') 29 for i in range(len(products)): 30 print('{:<10}'.format(products[i][0]),'{:<10}'.format(products[i][1]),'{:<10}'.format(products[i][2]),'{:<10.2f}'.format(products[i][3]),'{:>10}'.format(products[i][4])) 31 print('----------------------------------------------------------') 32 elif option=='2': 33 product_id= input('请输入您要购买的产品编号:') 34 while product_id not in[item[0] for item in products]: 35 product_id=input('编号不存在,请重新输入您要购买的产品编号:') 36 37 count=int(input('请输入您要购买的产品数量:')) 38 while count> products[int( product_id)-1][4]: 39 count=int(input('数量超出库存,请重新输入您要购买的产品数量:')) 40 41 #将所购买商品加入购物车 42 if product_id not in [item[0] for item in products_cart]: 43 products_cart.append([product_id,count]) 44 else: 45 for i in range(len(products_cart)): 46 if products_cart[i][0]==product_id: 47 products_cart[i][1]+=count 48 49 #更新商品列表 50 for i in range(len(products)): 51 if products[i][0]==product_id: 52 products[i][4]-=count 53 else: 54 print('购物车信息如下:') 55 print('***********************************************************') 56 print('{:<10} {:<10} '.format('编号','购买数量')) 57 print('----------------------------------------------------------') 58 for i in range(len(products_cart)): 59 print('{:10s}'.format(products_cart[i][0]),'{:6d}'.format(products_cart[i][1])) 60 print('----------------------------------------------------------') 61 option=input('操作成功!请选择您的操作:1—查看物品;2-购物;3-查看购物车;其它-结账') 62 #计算金额 63 if len( products_cart)>0: 64 amount=0 65 for i in range( len( products_cart)): 66 product_index=0 67 for j in range(len(products)): 68 if products[j][0]== products_cart[i][0]: 69 product_index=j 70 break 71 price= products[ product_index][3] 72 count= products_cart[i][1] 73 amount+=price*count 74 if 5000<amount<=10000: 75 amount=amount*0.95 76 elif 10000<amount <=20000: 77 amount=amount*0.90 78 elif amount>20000: 79 amount=amount*0.85 80 else: 81 amount=amount*1 82 print('购买成功,您需要支付%8.2f元'%amount) 83 #退出系统 84 print('谢谢您的光临,下次再见!')
运行结果截图

任务八
实验源码
1 #欢迎信息 2 print('欢迎使用家用电器销售系统!') 3 #商品数据初始化 4 products=[ 5 {'id':'0001','name':'电视机','brand':'海尔','price':5999.00,'count':20}, 6 {'id':'0002','name':'冰箱','brand':'西门子','price':6998.00,'count':15}, 7 {'id':'0003','name':'洗衣机','brand':'小天鹅','price':1999.00,'count':10}, 8 {'id':'0004','name':'空调','brand':'格力','price':3900.00,'count':0}, 9 {'id':'0005','name':'热水器','brand':'格力','price':688.00,'count':30}, 10 {'id':'0006','name':'笔记本','brand':'联想','price':5699.00,'count':10}, 11 {'id':'0007','name':'微波炉','brand':'苏泊尔','price':480.00,'count':33}, 12 {'id':'0008','name':'投影仪','brand':'松下','price':1250.00,'count':12}, 13 {'id':'0009','name':'吸尘器','brand':'飞利浦','price':999.00,'count':9}, 14 ] 15 16 17 #初始化用户购物车 18 products_cart = [] 19 20 option = input('请选择您的操作:1-查看商品;2-购物;3—查看购物车;其他-结账') 21 22 while option in['1','2','3']: 23 if option == '1': 24 #产品信息列表 25 print('产品和价格信息如下:') 26 print('************************************************') 27 print('%-10s'%'编号','%-10s'%'名称','%-10s'%'品牌','%-10s'%'价格','%-10s'%'库存数量') 28 print('-------------------------------------------------') 29 for i in range(len(products)): 30 print('%-10s'%products[i]['id'],'%-10s'%products[i]['name'], 31 (products[i]['brand']), 32 '%-10.2f'%products[i]['price'], 33 '%-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 product_id = input('编号不存在,请重新输入您要购买的产品编号:') 39 40 count = int(input('请输入您要购买的产品数量:')) 41 while count>products[int(product_id)-1]['count']: 42 count=int(input('数量超出库存,请重新输入您要购买的产品数量:')) 43 #将所购买的商品加入购物车 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('%-10s'%'编号','%-10s'%'购买数量') 58 print('-------------------------------------') 59 for i in range(len(products_cart)): 60 print('%-10s'%products_cart[i]['id'],'%6d'%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 product_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 76 if 5000<amount<=10000: 77 amount = amount * 0.95 78 elif 10000<amount<=20000: 79 amount = amount * 0.90 80 elif amount > 20000: 81 amount = amount*0.85 82 else: 83 amount = amount*1 84 print('购买成功,您需要支付{:.2f}元'.format(amount)) 85 86 #退出系统 87 print('谢谢您的光临,下次再见!')
运行结果截图

实验源码
1 #欢迎信息 2 print('欢迎使用家用电器销售系统!') 3 #商品数据初始化 4 products=[ 5 {'id':'0001','name':'电视机','brand':'海尔','price':5999.00,'count':20}, 6 {'id':'0002','name':'冰箱','brand':'西门子','price':6998.00,'count':15}, 7 {'id':'0003','name':'洗衣机','brand':'小天鹅','price':1999.00,'count':10}, 8 {'id':'0004','name':'空调','brand':'格力','price':3900.00,'count':0}, 9 {'id':'0005','name':'热水器','brand':'格力','price':688.00,'count':30}, 10 {'id':'0006','name':'笔记本','brand':'联想','price':5699.00,'count':10}, 11 {'id':'0007','name':'微波炉','brand':'苏泊尔','price':480.00,'count':33}, 12 {'id':'0008','name':'投影仪','brand':'松下','price':1250.00,'count':12}, 13 {'id':'0009','name':'吸尘器','brand':'飞利浦','price':999.00,'count':9}, 14 ] 15 16 17 #初始化用户购物车 18 products_cart = [] 19 20 option = input('请选择您的操作:1-查看商品;2-购物;3—查看购物车;其他-结账') 21 22 while option in['1','2','3']: 23 if option == '1': 24 #产品信息列表 25 print('产品和价格信息如下:') 26 print('************************************************') 27 print(print('{:<10}'.format('编号'),'{:<10}'.format('名称'),'{:<10}'.format('品牌'),'{:<10}'.format('价格'),'{:<10}'.format('库存数量'))) 28 print('-------------------------------------------------') 29 for i in range(len(products)): 30 print('{:<10}'.format(products[i]['id']),'{:<10}'.format(products[i]['name']),'{:<10}'.format 31 (products[i]['brand']), 32 '{:<10}'.format(products[i]['price']), 33 '{:<10}'.format(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 product_id = input('编号不存在,请重新输入您要购买的产品编号:') 39 40 count = int(input('请输入您要购买的产品数量:')) 41 while count>products[int(product_id)-1]['count']: 42 count=int(input('数量超出库存,请重新输入您要购买的产品数量:')) 43 #将所购买的商品加入购物车 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}'.format('编号'),'{:<10}'.format('购买数量')) 58 print('-------------------------------------') 59 for i in range(len(products_cart)): 60 print('{:<10}'.format(products_cart[i]['id']),'{:<6}'.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 product_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 76 if 5000<amount<=10000: 77 amount = amount * 0.95 78 elif 10000<amount<=20000: 79 amount = amount * 0.90 80 elif amount > 20000: 81 amount = amount*0.85 82 else: 83 amount = amount*1 84 print('购买成功,您需要支付{:.2f}元'.format(amount)) 85 86 #退出系统 87 print('谢谢您的光临,下次再见!')
运行结果截图


浙公网安备 33010602011771号