首页 > 编程语言 >实验3 控制语句与组合数据类型应用编程

实验3 控制语句与组合数据类型应用编程

时间:2023-04-23 23:45:42浏览次数:35  
标签:语句 count pro 编程 数据类型 cart products print id

实验任务一

源代码

 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:范围是0-100,能取到100

问题2:0,1,2,3,4,不包括

1,2,3,4,不包括

问题3:不一定,取不到0

问题4:一定

实验任务二

源代码

 1 lst = [55,92,88,79,86]
 2 i = 0
 3 while i < len(lst):
 4     print(lst[i],end = '')
 5     i+=1
 6 print()
 7 
 8 for i in range(len(lst)):
 9     print(lst[i],end = '')
10 print()
11 
12 for i in lst:
13     print(i,end ='')
14 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 for i in range(len(book_infos)):
8     book = list(book_infos[i].values())
9     print(f'{i+1}.《{book[0]}》,{book[1]}')

运行截图

实验任务三

源代码

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

运行截图

实验任务四

源代码

 1 code_majors = {'8326':'地信类','8329':'计算机类','8330':'气科类','8336':'防灾工程','8345':'海洋科学','8382':'气象工程'}
 2 print('{:-^50}'.format('专业代号信息'))
 3 for key,value in code_majors.items():
 4     print(f'{key}:{value}')
 5 print('{:-^50}'.format('学生专业查询'))
 6 while True:
 7     num = input('请输入学号:')
 8     if num == '#':
 9         print('查询结束')
10         break
11     keys = list(code_majors.keys())
12     if num[4:8] in keys:
13         print(f'专业是:{code_majors[num[4:8]]}')
14     else:print('不在这些专业里')

运行截图

实验任务五

源代码

 1 import random
 2 print('猜猜2023年5月哪一天会是你的lucky day','\U0001F609')
 3 lkd = random.randint(1,31)
 4 day = int(input('你有三次机会,猜吧(1~31):'))
 5 count = 1
 6 if day == lkd:
 7     print('哇,猜中了','\U0001F923')
 8 else:
 9     while count < 3 :
10         count += 1
11         if not(1<=day<=31):
12             print('地球上没有这一天啦,你是外星人吗')
13             day = int(input('再猜(1~31):'))
14         elif day < lkd:
15             print('猜早了,你的luck day还没到呢')
16             day = int(input('再猜(1~31):'))
17         elif day > lkd:
18             print('猜晚了,你的luck day已经过了')
19             day = int(input('再猜(1~31):'))
20         else:
21             print('哇,猜中了','\U0001F923')
22             count += 1
23             break
24 if count == 3 and lkd != day:
25     print('哇哦,次数用光了.')
26     print(f'偷偷告诉你,5月你的lucky day是{lkd}号.good luck\U0001F60A')
27 elif count == 3 and lkd == day:
28     print('哇,猜中了', '\U0001F923')

运行截图

实验任务六

源代码

 1 datas = {'2049777001': ['篮球', '羽毛球', '美食', '漫画'],
 2 '2049777002': ['音乐', '旅行'],
 3 '2049777003': ['马拉松', '健身', '游戏'],
 4 '2049777004': [],
 5 '2049777005': ['足球', '阅读'],
 6 '2049777006': ['发呆', '闲逛'],
 7 '2049777007': [],
 8 '2049777008': ['书法', '电影'],
 9 '2049777009': ['音乐', '阅读', '电影', '漫画'],
10 '2049777010': ['数学', '推理', '音乐', '旅行']
11 }
12 lst = []
13 count = dict()
14 for key in datas.keys():
15     for t in datas[key]:
16         count[t] = 0
17 for key in datas.keys():
18     for t in datas[key]:
19         count[t] +=1
20 count = sorted(count.items(),key=lambda x:x[1],reverse = True)
21 for key, value in dict(count).items():
22      print(f'{key}: {value}')

运行截图

实验任务七

task7_1.py

 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('%-10s' % '编号', '%-10s' % '名称', '%-10s' % '品牌', '%-10s' % '价格', '%-10s' % '库存数量')
28       print('----------------------------------------------------------')
29       for i in range(len(products)):
30         print('%-10s'%products[i][0],'%-10s'%products[i][1],'%-10s'%products[i][2],'%10.2f'%products[i][3],'%10d'%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('%-10s'%'编号','%-10s'%'购买数量')
57    print('----------------------------------------------------------')
58    for i in range(len(products_cart)):
59     print('%-10s'%products_cart[i][0],'%-10s'%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('谢谢您的光临,下次再见!')

运行截图

task7_2.py

 源代码

 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('谢谢您的光临,下次再见!')

运行截图

实验任务八

task8_1.py

源代码

 

 1 print('欢迎使用家用电器销售系统!')
 2 pro=[{'id':'0001','name':'电视机','brand':'海尔','price':5999.00,'count':20},
 3      {'id':'0002','name':'冰箱','brand':'西门子','price':6998.00,'count':15},
 4      {'id':'0003','name':'洗衣机','brand':'小天鹅','price':1999.00,'count':10},
 5      {'id':'0004','name':'空调','brand':'格力','price':3900.00,'count':0},
 6      {'id':'0005','name':'热水器','brand':'格力','price':688.00,'count':30},
 7      {'id':'0006','name':'笔记本','brand':'联想','price':5699.00,'count':10},
 8      {'id':'0007','name':'微波炉','brand':'苏泊尔','price':480.00,'count':33},
 9      {'id':'0008','name':'投影仪','brand':'松下','price':1250.00,'count':12},
10      {'id':'0009','name':'吸尘器','brand':'飞利浦','price':999.00,'count':9}
11      ]
12 products_cart=[]
13 option=input('请选择您的操作:1-查看商品;2-购物;3-查看购物车;其他-结账')
14 while option in['1','2','3',]:
15     if option=='1':
16         print('产品和价格信息如下')
17         print('***********************************************************')
18         print('%-10s' % '编号', '%-10s' % '名称', '%-10s' % '品牌', '%-10s' % '价格', '%-10s' % '库存数量')
19         print('-----------------------------------------------------------')
20         for i in range(len(pro)):
21             print('%-10s'%pro[i]['id'],'%-10s'%pro[i]['name'],'%-10s'%pro[i]['brand'],'%10.2f'%pro[i]['price'],'%10d'%pro[i]['count'])
22         print('-----------------------------------------------------------')
23     elif option == '2':
24         pro_id = input('请输入您要购买的产品编号:')
25         while pro_id not in [item['id'] for item in pro]:
26             pro_id = input('编号不存在,请重新输入您要购买的产品编号:')
27         count=int(input('请输入您要购买的产品数量:'))
28         while count > pro[int(pro_id)-1]['count']:
29             count=input('数量超出库存。请重新输入您要购买的产品数量:')
30         if pro_id not in [item['id'] for item in products_cart]:
31             products_cart.append({'id':pro_id,'count':count})
32         else:
33             for i in range(len(products_cart)):
34                 if products_cart[i].get('id')==pro_id:
35                     products_cart[i]['count']+=count
36 
37         for i in range(len(pro)) :
38             if pro[i]['id']==pro_id:
39                 pro[i]['count']-=count
40     else:
41         print('购物车信息如下:')
42         print('************************************')
43         print('%-10s'%'编号','%-10s'%'购买数量')
44         print('------------------------------------')
45         for i in range(len(products_cart)):
46             print('%-10s'%products_cart[i]['id'],'%6d'%products_cart[i]['count'])
47         print('------------------------------------')
48     option = input('操作成功!请选择您的操作:1-查看商品;2-购物;3-查看购物车;其他-结账')
49 if len(products_cart)>0:
50     amount=0
51     for i in range(len(products_cart)):
52         pro_index=0
53         for j in range(len(pro)):
54             if pro[j]['id']==products_cart[i]['id']:
55                 pro_index=j
56                 break
57         price=pro[pro_index]['price']
58         count=products_cart[i]['count']
59         amount+=price*count
60     if 5000 < amount <= 10000:
61         amount = amount * 0.95
62     elif 10000 < amount <= 20000:
63         amount = amount * 0.9
64     elif 20000 < amount:
65         amount = amount * 0.85
66     else:
67         amount = amount * 1
68     print('购买成功,您需要支付%8.2f元' % amount)
69 print('谢谢您的光临,下次再见!')

运行截图

task8_2.py

源代码

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

运行截图

 

标签:语句,count,pro,编程,数据类型,cart,products,print,id
From: https://www.cnblogs.com/simple77/p/17332821.html

相关文章

  • Javascript数据类型
    值类型和引用类型原始类型(alias:值类型,基础类型)primitive:stringnumberbooleannullundefinedsymbol引用类型:Object其他内置Object派送类型ArrayFunctionMapSetWeakMapWeakSetRegExpNaN:特殊的Number类型,IsNaN()判断一个值是否为NaN引用类型可以有......
  • 实验3 控制语句与组合数据类型应用编程
    task1问题1:可以取到100问题2:范围:0、1、2、3、4,不能取到5;范围:1、2、3、4,不能取到5问题3:一定是5问题4:一定是5task2-3book_infos=[{'书名':'昨日的世界','作者':'斯蒂芬.茨威格'},{'书名':'局外人','作者':'阿尔贝.加缪'......
  • 2022.4.23编程一小时打卡
    一、问题描述:定义一个基类,派生出子类,基类有fn1(),fn2(),fn1()是虚函数;子类也有这俩个函数,在主函数中声明子类的一个对象,并通过指针调用这俩个函数。观察程序运行过程。二、解题思路:首先,定义一个基类BaseClass类,其派生出子类DerivedClass类,在主函数中定义基类的指针,调用这俩个函......
  • 实验3 控制语句与组合数据类型应用编程
    task1源代码1importrandom23print('用列表存储随机整数:')4lst=[random.randint(0,100)foriinrange(5)]5print(lst)67print('\n用集合存储随机整数:')8s1={random.randint(0,100)foriinrange(5)}9print(s1)1011print('......
  • 每日编程一小时(第十四天)
    一.问题描述编写程序:用二分法在有序表{3,4,10,13,33,42,46,63,76,78,95,96,120}中查找一个给定的数。 二.设计思路1.定义一个数组a存入上面的数,按从小到大排序2.输入一个数n3.设计一个函数f(a,0,13,n),取中间值mid=1+13/2,比较a[mid]和n的大小,若right-left>1&&a[mid]!=x,有......
  • 编程一小时2023.4.23
    1.#include<bits/stdc++.h>usingnamespacestd;stringa,s;intb[1005],t,c[1005];voiddivision(){for(inti=t-1;i>=0;i--){if(b[i]%2)b[i-1]+=10;b[i]/=2;}while(b[t-1]==0)t-......
  • 编程打卡:给网页做个花里胡哨个格子纹理背景吧。
    编程打卡:给网页做个花里胡哨个格子纹理背景吧。嗯看到Github上面有一个项目,格裙纹理生成器稍微玩了一会儿,感觉这样的纹理或许可以用来做网页的背景,就这样做了。这个项目生成的图片,感觉太精细了,,稍微一个SVG,就有好几MB大,虽然确实惊喜,里面的纹理,用来做裙子什么的说不定真的可以,但......
  • 编程计划
    大二在读......
  • 并发编程(1)-线程与锁
    1.什么是线程?线程的状态与进程的状态非常相似,但线程是在进程内运行的轻量级实体。线程与进程的主要区别是线程共享相同的地址空间,而进程具有独立的地址空间。这意味着在进程中运行的每个线程都可以访问相同的变量和数据结构,而在不同进程中运行的线程则不能访问彼此的变量和数据......
  • java 编程 习惯
    (1)类名首字母应该大写。字段、方法以及对象(句柄)的首字母应小写。对于所有标识符,其中包含的所有单词都应紧靠在一起,而且大写中间单词的首字母。例如:ThisIsAClassNamethisIsMethodOrFieldName若在定义中出现了常数初始化字符,则大写staticfinal基本类型......