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

实验2 字符串和列表

时间:2023-03-28 19:44:25浏览次数:28  
标签:%- 10 list 列表 print 实验 字符串 10s


                                        实验任务1
#task1:字符串的基础操作(课堂上没有演示的一些方法)
实验内容
x = 'nba FIFA'
print(x.upper())            #字符串转大写
print(x.lower())            #字符串转小写
print(x.swapcase())         #字符串大小写翻转
print()

x = 'abc'
print(x.center(10, '*'))    #字符串居中,宽度10列,不足左右补*号
print(x.ljust(10, '*'))     #字符串居左,宽度10列,不足右边补*号
print(x.rjust(10, '*'))     #字符串居右,宽度10列,不足左边补*号
print()

x = '123'
print(x.zfill(10))          #字符串宽度10列,不足左边用0填充
x = 123
print(str(x).zfill(10))     #把int类型转化为字符串类型后,对字符对象使用str.zfill()方法
print()

x = 'phone_number'
print(x.isidentifier())     #判断字符串是否是python合法标识符
x = '222.test'
print(x.isidentifier())
print()

x = '  '
print(x.isspace())          #判断字符串是否是空白符(包括空格、回车、Tab键)
x = '\n'
print(x.isspace())
print()

x = 'python is fun'
table = x.maketrans('thon', '1234')  #为字符串x创建一个字符映射表,字符thon分别映射到字符1234
print(x.translate(table))            #根据字符映射表table对字符串对象x中的字符进行转换

实验截图

 

 


                                        实验任务2
#task2:基础练习:列表、格式化、类型转换
实验内容
x = [1,9,8,4,2,0,49]

print('整数输出1:', end = ' ')
i = 0
while i < len(x):
    print(x[i], end = ' ')
    i +=1

print('\n整数输出2:', end = ' ')
i = 0
while i <len(x):
    print(f'{x[i]:02d}', end = '-')   #指定每个整数宽度占2列;不足2列,左边补0
    i += 1

print('\n整数输出3:',end  = ' ')
i = 0
while i <len(x) - 1:
    print(f'{x[i]:02d}', end = '-')
    i += 1
print(f'{x[-1]:02d}')

print('\n字符输出1:', end = ' ')
y1 = []
i = 0
while i < len(x):
    y1.append(str(x[i]))             #函数str()用于把其它类型对象转化为字符串对象
    i += 1
print('-'.join(y1))

print('字符输出2:', end = ' ')
y2 = []
i = 0
while i < len(x):
    y2.append(str(x[i]).zfill(2))    #x[i]是int类型对象,使用str()转换成字符串对象后,处理,然后加入到列表y中
    i += 1
print('-'.join(y2))
实验截图

 


                                         实验任务3
#task3: 把姓名转换成大写,遍历分行输出
实验内容
name_list = ['david bowie', 'louis armstrong', 'leonard cohen', 'bob dylan', 'cocteau twins']

#方法1
i = 0
while i < len(name_list):
    print(name_list[i].title())
    i += 1

print()

#方法2
t = []
i = 0
while i < len(name_list):
    t.append(name_list[i].title())
    i += 1

print('\n'.join(t))
实验截图

 

                                          实验任务4
#task4: 将姓和名首字母转换为大写后,将姓名按字典序编号输出
实验内容
name_list = ['david bowie', 'louis armstrong', 'leonard cohen', 'bob dylan', 'cocteau twins']
n = sorted(name_list)
i = 0
while i < len(name_list):
    print(f'{i + 1}. {n[i].title()}')
    i += 1
实验截图

 


                                          实验任务5
#task5: 粗略统计Zen Of Python(Python之禅)的行数、单词数、字符数、空格数
实验内容
ZOP = '''The Zen of Python, by Tim Peters
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!'''
print(f'行数:{len(ZOP.splitlines())}')
print(f'单词数:{len(ZOP.split())}')
print(f'字符数:{len(ZOP)}')
print(f'空格数:{ZOP.count(" ")}')
实验截图

 

                                         实验任务6
#task6
实验内容
book_list = [['静静的顿河','肖洛霍夫','金人', '人民文学出版社'], ['大地之上','罗欣顿.米斯特里','张亦琦', '天地出版社'], ['夜航西飞', '柏瑞尔.马卡姆', '陶立夏', '人民文学出版社'], ['来自民间的叛逆', '袁越', '','新星出版社'], ['科技与恶的距离', '珍妮.克里曼', ' 詹蕎語', '墨刻出版社'], ['灯塔','克里斯多夫.夏布特','吕俊君','北京联合出版公司'], ['小行星掉在下午','沈大成', '', '广西师范大学出版社']] print(f"{'图书信息':*^40}") import copy b = copy.deepcopy(book_list) #后续del操作会对book-list修改,因此此处先保存原有的book-list,待del操作后再还原,以便需要查询原book-list时可以查到 i = 0 while i < len(book_list): a = book_list[i] del(a[2]) print(f'{i + 1}. {"|".join(a)}') i += 1 book_list = b
实验截图

 


                                         实验任务7
#task7
实验内容
data = ['99 81 75', '30 42 90 87', '69 50 96 77 89 93', '82 99 78 100']
i = 0
count = 0
ct = 0
while i < len(data):
    a = data[i]
    b = a.split()
    ct += len(b)
    x = 0
    while x < len(b):
        c = b[x]
        count += int(c)
        x += 1
    i += 1
d = count/ct
print(f'{d:.2f}')
实验截图

 

                                          实验任务8
#task8
实验内容
words_sensitive_list = ['张三', 'V字仇杀队', '杀']
comments_list = ['张三因生命受到威胁正当防卫导致过失杀人,经辩护律师努力,张三不需负刑事责任。',
'电影<V字仇杀队>从豆瓣下架了',
'娱乐至死']
ls = []
j = 0
while j < len(comments_list):
    i = 0
    b = comments_list[j]
    while i < len(words_sensitive_list):
        a = words_sensitive_list[i]
        if a in b:
            b = b.replace(a, '*'*len(a))
            i += 1
        else:
            i += 1
    ls.append(b)
    j += 1
for i in ls:
    print(i)
实验截图

 


                                          实验任务9
#task9_1:教材3.7节应用示例代码(教材p105)
实验内容
""" 家用电器销售系统 v1.1 """ #欢迎信息 print('欢迎使用家用电器销售系统!') #产品信息列表 print('产品和价格信息如下:') print('*'*57) print('%-10s'%'编号', '%-10s'%'名称', '%-10s'%'品牌', '%-10s'%'价格', '%-10s'%'库存数量') print('-'*51) print('%-10s'%'0001', '%-10s'%'电视机', '%-10s'%'海尔', '%10.2f'%5999.00,'%10d'%20 ) print('%-10s'%'0002', '%-10s'%'冰箱', '%-10s'%'西门子', '%10.2f'%6998.00,'%10d'%15 ) print('%-10s'%'0003', '%-10s'%'洗衣机', '%-10s'%'小天鹅', '%10.2f'%1999.00,'%10d'%10 ) print('%-10s'%'0004', '%-10s'%'空调', '%-10s'%'格力', '%10.2f'%3900.00,'%10d'%0 ) print('%-10s'%'0005', '%-10s'%'热水器', '%-10s'%'美的', '%10.2f'%688.00,'%10d'%30 ) print('%-10s'%'0006', '%-10s'%'笔记本', '%-10s'%'联想', '%10.2f'%5699.00,'%10d'%10 ) print('%-10s'%'0007', '%-10s'%'微波炉', '%-10s'%'苏泊尔', '%10.2f'%480.50,'%10d'%33 ) print('%-10s'%'0008', '%-10s'%'投影仪', '%-10s'%'松下', '%10.2f'%1250.00,'%10d'%12 ) print('%-10s'%'0009', '%-10s'%'吸尘器', '%-10s'%'飞利浦', '%10.2f'%999.00,'%10d'%9 ) print('-'*51) #商品数据 products=[ ['0001','电视机','海尔',5999.00,20], ['0002','冰箱','西门子',6998.00,15], ['0003','洗衣机','小天鹅',1999.00,10], ['0004','空调','格力',3900.00,0], ['0005','热水器','格力',688.00,30], ['0006','笔记本','联想',5699.00,10], ['0007','微波炉','苏泊尔',480.00,33], ['0008','投影仪','松下',1250.00,12], ['0009','吸尘器','飞利浦',999.00,9] ] #用户输入信息 product_id = input('请输入您要购买的产品编号:') count = int(input('请输入您要购买的产品数量:')) #输入编号对应商品的信息 product_index = int(product_id) - 1 product = products[product_index] #计算金额 print('购买成功,您需要支付', product[3]*count, '元') #退出系统 print('谢谢您的光临,下次再见!')
实验截图

 

#task9_2:用f-string方式重写教材3.7节应用示例代码(教材p105)
实验内容
""" 家用电器销售系统 v1.1 """ #欢迎信息 print('欢迎使用家用电器销售系统!') #商品数据 products=[ ['0001','电视机','海尔',5999.00,20], ['0002','冰箱','西门子',6998.00,15], ['0003','洗衣机','小天鹅',1999.00,10], ['0004','空调','格力',3900.00,0], ['0005','热水器','格力',688.00,30], ['0006','笔记本','联想',5699.00,10], ['0007','微波炉','苏泊尔',480.00,33], ['0008','投影仪','松下',1250.00,12], ['0009','吸尘器','飞利浦',999.00,9] ] #产品信息列表 print('产品和价格信息如下:') print('*'*57) print(f"{'编号': <10} {'名称': <10} {'品牌': <10} {'价格': <10} {'库存数量': <10} ") for i in products: j = 0 while j < len(i): print(i[j], end = ' '*(12 - len(str(i[j])))) j += 1 print('',end = '\n') print('-'*51) #用户输入信息 product_id = input('请输入您要购买的产品编号:') count = int(input('请输入您要购买的产品数量:')) #输入编号对应商品的信息 product_index = int(product_id) - 1 product = products[product_index] #计算金额 print('购买成功,您需要支付', product[3]*count, '元') #退出系统 print('谢谢您的光临,下次再见!')
实验截图


 

标签:%-,10,list,列表,print,实验,字符串,10s
From: https://www.cnblogs.com/lj1018/p/17242959.html

相关文章

  • shopee商品列表接口,关键词搜索shopee商品数据接口代码教程
    业务场景:作为全球最大的B2C电子商务平台之一,Shopee平台提供了丰富的商品资源,吸引了大量的全球买家和卖家。为了方便开发者接入Shopee平台,Shopee平台提供了丰富的API......
  • 字符串和列表
    x='nbaFIFA'print(x.upper())print(x.lower())print(x.swapcase())print()x='abc'print(x.center(10,'*'))print(x.ljust(10,'*'))print(x.rjust(10,'*'......
  • 微信小程序 正则字符串转为正则对象
    场景:服务器返回的一个正则表达式是一个字符串类型的,直接拿去配置正则是不可以的,需要转为正则对象,然后去验证,网页可以使用evel()对象,但是微信小程序就不行,方......
  • 追番列表
    JOJO6石之海JOJO4不灭钻石JOJO3星尘远征军女子高中生的虚度日常在下坂本有何贵干吹响吧~上低音号利兹与青鸟柑橘味香气~citrus牵牛花与加濑同学魔女之旅恋爱......
  • 第七篇 基本包装类型-字符串类型 - String、Number、Boolean
    基本包装类型基本包装类型是特殊的引用类型ECMAScript提供了三种基本包装类型NumberStringBoolean每当读取一个基本类型值的时候,后台就会创建一个对应的基本包装......
  • NLP 开源形近字算法之相似字列表(番外篇)
    创作目的国内对于文本的相似度计算,开源的工具是比较丰富的。但是对于两个汉字之间的相似度计算,国内基本一片空白。国内的参考的资料少的可怜,国外相关文档也是如此。本项......
  • HCIP-OSPF实验
      实验要求:1.R4为ISP,其上只能配置IP地址;R4与其他所有直连设备间均使用公有IP2.R3-R5/6/7为MGRE环境,R3为中心站点3.整个OSPF环境IP基于172.16.0.0/16划分4.所有设备......
  • WebForm之企业微信开发(2)——准备Sha1签名算法,随机字符串及时间戳
    usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Security.Cryptography;usingSystem.Text;usingSystem.Web;///<summary>///Sha1He......
  • 20203160715-宋晔婷 实验一软件工程准备-软件开发的工程认识
    前文项目内容课程班级博客链接2020级卓越工程师班这个作业要求链接实验一——软件工程准备我的课程学习目标学会使用博客园进行学习学习并掌握Github工......
  • 实验二 字符串和列表
    任务一:x='nbaFIFA'print(x.upper())print(x.lower())print(x.swapcase())print()x='abc'print(x.center(10,'*'))print(x.ljust(10,'*'))print(x.rjust(1......