首页 > 其他分享 >实验2 字符串和列表

实验2 字符串和列表

时间:2023-03-27 23:13:39浏览次数:26  
标签:%- 10 int 列表 print 实验 字符串 10s data

实验任务1

task1.py

实验源码

 1 x = 'nba FIFA'
 2 print(x.upper())
 3 print(x.lower())
 4 print(x.swapcase())
 5 print()
 6 
 7 x = 'abc'
 8 print(x.center(10,'*'))
 9 print(x.ljust(10,'*'))
10 print(x.rjust(10,'*'))
11 print()
12 
13 x = '123'
14 print(x.zfill(10))
15 x = 123
16 print(str(x).zfill(10))
17 print()
18 
19 x = 'phone_number'
20 print(x.isidentifier())
21 x = '222test'
22 print(x.isidentifier())
23 print()
24 
25 x = ' '
26 print(x.isspace())
27 x = '\n'
28 print(x.isspace())
29 print()
30 
31 x = 'python is fun'
32 table = x.maketrans('thon', '1234')
33 print(x.translate(table))

实验结果

 

实验任务2

task2.py

实验源码

 1 x = [5, 11, 9, 7, 42]
 2 
 3 print('整数输出1:', end = '')
 4 i = 0
 5 while i < len(x):
 6     print(x[i], end = ' ')
 7     i += 1
 8 
 9 print('\n整数输出2:', end = '')
10 i = 0
11 while i < len(x):
12     print(f'{x[i]:02d}', end = '-')
13     i += 1
14 
15 print('\n整数输出3:', end = '')
16 i = 0
17 while i < len(x) - 1:
18     print(f'{x[i]:02d}', end = '-')
19     i += 1
20 print(f'{x[-1]:02d}')
21 
22 print('\n字符输出1:', end = '')
23 y1 = []
24 i = 0
25 while i < len(x):
26     y1.append(str(x[i]))
27     i += 1
28 print('-'.join(y1))
29 
30 print('字符输出2:', end = '')
31 y2 = []
32 i = 0
33 while i < len(x):
34     y2.append( str(x[i]).zfill(2) )
35     i += 1
36 print('-'.join(y2))

实验结果

 

实验任务3

task3.py

实验源码

 1 name_list = ['david bowie', 'louis armstrong', 'leonard cohen', 'bob dylan', 'cocteau twins']
 2 
 3 #方法1
 4 i = 0
 5 while i < len(name_list):
 6     print(name_list[i].title())
 7     i += 1
 8 
 9 print()
10 
11 #方法2
12 t = []
13 i = 0
14 while i < len(name_list):
15     t.append(name_list[i].title())
16     i += 1
17 
18 print('\n'.join(t))

实验结果

 

实验任务4

task4.py

实验源码

1 name_list=['david bowie','louis armstron','leonard cohen','bob dylan','cocteau twins']
2 name_list.sort()
3 i=0
4 while i<len(name_list):
5     print(i+1,'.',name_list[i].title())
6     i+=1
7 print()

实验结果

 

实验任务5

task5.py

实验源码

 1 article = '''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.
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 
23 print('行数:',len(article.splitlines()))
24 print('单词数:',len(article.split()))
25 print('字符数:',len(article))
26 print('空格数:',article.count(' '))

实验结果

 

实验任务6

task6.py

实验源码

 1 book_list = [['静静的顿河','肖洛霍夫','金人', '人民文学出版社'],
 2 ['大地之上','罗欣顿.米斯特里','张亦琦', '天地出版社'],
 3 ['夜航西飞', '柏瑞尔.马卡姆', '陶立夏', '人民文学出版社'],
 4 ['来自民间的叛逆', '袁越', '','新星出版社'],
 5 ['科技与恶的距离', '珍妮.克里曼', ' 詹蕎語', '墨刻出版社'],
 6 ['灯塔','克里斯多夫.夏布特','吕俊君','北京联合出版公司'],
 7 ['小行星掉在下午','沈大成', '', '广西师范大学出版社']]
 8 x = '图书信息'
 9 print(x.center(45,'*'))
10 i=0
11 while i<len(book_list):
12     print(i+1,'.','|'.join(book_list[i]))
13     i+=1

实验结果

 

实验任务7

task7.py

实验源码

 1 '''
 2 某.csv格式数据文件内数据如下:
 3 99 81 75
 4 30 42 90 87
 5 69 50 96 77 89,93
 6 82, 99, 78, 100
 7 '''
 8 data = ['99 81 75','30 42 90 87','69 50 96 77 89 93','82 99 78 100']
 9 x1 = (int(data[0][0:2])+int(data[0][3:5])+int(data[0][6:8]))
10 x2 = (int(data[1][0:2])+int(data[1][3:5])+int(data[1][6:8])+int(data[1][9:11]))
11 x3 = (int(data[2][0:2])+int(data[2][3:5])+int(data[2][6:8])+int(data[2][9:11])+int(data[2][12:14])+int(data[2][15:17]))
12 x4 = (int(data[3][0:2])+int(data[3][3:5])+int(data[3][6:8])+int(data[3][9:12]))
13 x = (x1+x2+x3+x4)/17
14 print('*** Remote Interpreter Reinitialized ***')
15 print('{:.2f}'.format(x))

 实验结果

 

实验任务8

task8.py

实验源码

 1 words_sensitive_list = ['张三', 'V字仇杀队', '杀']
 2 comments_list = ['张三因生命受到威胁正当防卫导致过失杀人,经辩护律师努力,张三不需负刑事责任。',
 3                  '电影<V字仇杀队>从豆瓣下架了',
 4                  '娱乐至死']
 5 i = 0
 6 while i < len(words_sensitive_list):
 7     t = 0
 8     while t < len(words_sensitive_list):
 9         comments_list[i]=comments_list[i].replace(words_sensitive_list[t],'*'*len(words_sensitive_list[t]))
10         t+=1
11         i+=1
12 print('\n'.join(comments_list))

实验结果

 

实验任务9

task9_1.py

实验源码

 1 """
 2 家用电器销售系统
 3 v1.1
 4 """
 5 
 6 # 欢迎信息
 7 print('欢迎使用家用电器销售系统!')
 8 
 9 # 产品信息列表
10 print('产品和价格信息如下:')
11 print('*********************************************************')
12 print('%-10s'%'编号','%-10s'%'名称','%-10s'%'品牌','%-10s'%'价格','%-10s'%'库存数量')
13 print('--------------------------------------------')
14 print('%-10s'%'0001','%-10s' %'电视机','%-10s' %'海尔',  '%10.2f' %5999.00, '%10d' %20)
15 print('%-10s'%'0002','%-10s' %'冰箱',  '%-10s' %'西门子','%10.2f' %6998.00, '%10d' %15)
16 print('%-10s'%'0003','%-10s' %'洗衣机','%-10s' %'小天鹅', '%10.2f' %1999.00, '%10d' %10)
17 print('%-10s'%'0004','%-10s' %'空调',  '%-10s' %'格力',  '%10.2f' %3900.00, '%10d' %0)
18 print('%-10s'%'0005','%-10s' %'热水器','%-10s' %'美的',  '%10.2f' %688.00, '%10d' %30)
19 print('%-10s'%'0006','%-10s' %'笔记本','%-10s' %'联想',  '%10.2f' %5699.00, '%10d' %10)
20 print('%-10s'%'0007','%-10s' %'微波炉','%-10s' %'苏泊尔','%10.2f' %480.50, '%10d' %33)
21 print('%-10s'%'0008','%-10s' %'投影仪','%-10s' %'松下',  '%10.2f' %1250.00, '%10d' %12)
22 print('%-10s'%'0009','%-10s' %'吸尘器','%-10s' %'飞利浦','%10.2f' %999.00, '%10d' %9)
23 print('-------------------------------------------')
24 
25 # 商品数据
26 products=[
27     ['0001','电视机', '海尔',5999.00,20],
28     ['0002','冰箱', '西门子',6998.00,15],
29     ['0003','洗衣机', '小天鹅',1999.00,10],
30     ['0004','空调', '格力',3900.00,0],
31     ['0005','热水器', '格力',688.00,30],
32     ['0006','笔记本', '联想',5699.00,10],
33     ['0007','微波炉', '苏泊尔',480.00,33],
34     ['0008','投影仪', '松下',1250.00,12],
35     ['0009','吸尘器', '飞利浦',999.00,9],
36   ]
37 #用户输入信息
38 product_id= input('请输入您要购买的产品编号:')
39 count = int(input('请输入您要购买的产品数量:'))
40 
41 #获取编号对应商品的信息
42 product_index=len(product_id)-1
43 product=products[product_index]
44 
45 # 计算金额
46 print('购买成功,您需要支付',product[3]*count,'元')
47 
48 # 退出系统
49 print('谢谢您的光临,下次再见!')

实验结果

task9_2.py

实验源码

 1 """
 2 家用电器销售系统
 3 v1.1
 4 """
 5 
 6 # 欢迎信息
 7 print('欢迎使用家用电器销售系统!')
 8 
 9 # 产品信息列表
10 print('产品和价格信息如下:')
11 print('*********************************************************')
12 print('{:<10s}'.format('编号'),'{:<10s}'.format('名称'),'{:<10s}'.format('品牌'),'{:<10s}'.format('价格'),'{:<10s}'.format('库存数量'))
13 print('-'*60)
14 print('{:<10s}'.format('0001'),'{:<10s}' .format('电视机'),'{:<10}'.format('海尔'),  '{:<10.2f}'.format(5999.00), '{:<10d}'.format(20))
15 print('{:<10s}'.format('0002'),'{:<10s}' .format('冰箱'),'{:<10}'.format('西门子'),  '{:<10.2f}'.format(6998.00), '{:<10d}'.format(15))
16 print('{:<10s}'.format('0003'),'{:<10s}' .format('洗衣机'),'{:<10}'.format('小天鹅'),  '{:<10.2f}'.format(1999.00), '{:<10d}'.format(10))
17 print('{:<10s}'.format('0004'),'{:<10s}' .format('空调'),'{:<10}'.format('格力'),  '{:<10.2f}'.format(3900.00), '{:<10d}'.format(0))
18 print('{:<10s}'.format('0005'),'{:<10s}' .format('热水器'),'{:<10}'.format('美的'),  '{:<10.2f}'.format(688.00), '{:<10d}'.format(30))
19 print('{:<10s}'.format('0006'),'{:<10s}' .format('笔记本'),'{:<10}'.format('联想'),  '{:<10.2f}'.format(5699.00), '{:<10d}'.format(10))
20 print('{:<10s}'.format('0007'),'{:<10s}' .format('微波炉'),'{:<10}'.format('苏泊尔'),  '{:<10.2f}'.format(480.50), '{:<10d}'.format(33))
21 print('{:<10s}'.format('0008'),'{:<10s}' .format('投影仪'),'{:<10}'.format('松下'),  '{:<10.2f}'.format(1250.00), '{:<10d}'.format(12))
22 print('{:<10s}'.format('0009'),'{:<10s}' .format('吸尘器'),'{:<10}'.format('飞利浦'),  '{:<10.2f}'.format(999.00), '{:<10d}'.format(9))
23 print('-'*60)
24 
25 # 商品数据
26 products=[
27     ['0001','电视机', '海尔',5999.00,20],
28     ['0002','冰箱', '西门子',6998.00,15],
29     ['0003','洗衣机', '小天鹅',1999.00,10],
30     ['0004','空调', '格力',3900.00,0],
31     ['0005','热水器', '格力',688.00,30],
32     ['0006','笔记本', '联想',5699.00,10],
33     ['0007','微波炉', '苏泊尔',480.00,33],
34     ['0008','投影仪', '松下',1250.00,12],
35     ['0009','吸尘器', '飞利浦',999.00,9],
36   ]
37 
38 # 用户输入信息
39 product_id = input('请输入您要购买的产品编号:')
40 count = int(input('请输入您要购买的产品数量:'))
41 
42 #获取编号对应商品的信息
43 product_index=len(product_id)-1
44 product=products[product_index]
45 
46 # 计算金额
47 print('购买成功,您需要支付',product[3]*count,'元')
48 
49 # 退出系统
50 print('谢谢您的光临,下次再见!')

实验结果

 

标签:%-,10,int,列表,print,实验,字符串,10s,data
From: https://www.cnblogs.com/gaoyue124/p/17242879.html

相关文章

  • 实验2
    1.实验任务1task1.pyx='nbaFIFA'print(x.upper())#字符串转大写print(x.lower())#字符串转小写print(x.swapcase())#字符串大小写翻转print()x='abc'......
  • 支付回调MQ消息的幂等处理及MD5字符串es中的使用及支付宝预授权完成
    支付回调MQ消息的幂等处理及MD5字符串es中的使用及支付宝预授权完成1.幂等的处理,根据对象的转json转md5作为key,退款的处理控制发送端?业务上比较难控制。支付异步通知,......
  • 实验二——字符串,列表
    任务一程序:1x='nbaFIFA'2print(x.upper())3print(x.lower())4print(x.swapcase())#大小写翻转56x='abc'7print(x.center(10,'*'))8pri......
  • 实验一 密码引擎-2-电子钥匙功能测试
    目录1解压"资源"中“龙脉密码钥匙驱动实例工具等”压缩包2在Ubuntu中运行“龙脉密码钥匙驱动实例工具等\mToken-GM3000\skf\samples\linux_mac”中例程,提交运行结果截图......
  • Spinner(列表选项框)的基本使用
    这一节是想给大家介绍一个Gallery(画廊)的一个控件,尽管我们可以不通过兼容使用Gallery,不过想想还是算了,因为Gallery在每次切换图片的时候,都需要重新创建视图,这样无疑会造成......
  • 实验一 密码引擎-2-电子钥匙功能测试
    在Ubuntu中运行“龙脉密码钥匙驱动实例工具等\mToken-GM3000\skf\samples\linux_mac”中例程,提交运行结果截图加分项:运行“龙脉密码钥匙驱动实例工具等\mToken-GM3000......
  • dom4j 解析xml string 字符串
    packagedom4j;importjava.util.Iterator;importorg.dom4j.Document;importorg.dom4j.DocumentException;importorg.dom4j.DocumentHelper;importorg.dom4j.......
  • 实验一 密码引擎-2-电子钥匙功能测试
    任务详情0参考附件中的视频1解压"资源"中“龙脉密码钥匙驱动实例工具等”压缩包2在Ubuntu中运行“龙脉密码钥匙驱动实例工具等\mToken-GM3000\skf\samples\linux_ma......
  • 202031604107-米乐文 实验一 软件工程准备—初识软件工程
    项目内容课程班级博客链接2020级卓越工程师班这个作业要求链接实验一——软件工程准备我的课程学习目标1.学会使用博客园进行学习2.了解Github工具的......
  • 实验二 字符串和列表
    task1源代码#字符串基本操作x='nbaFIFA'print(x.upper())#转大写print(x.lower())#转小写print(x.swapcase())#大小写翻转print()x='abc'print(......