博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
4.字符串(2-6/2-7)
阅读量:6607 次
发布时间:2019-06-24

本文共 780 字,大约阅读时间需要 2 分钟。

2-6 名言 2:重复练习 2-5,但将名人的姓名存储在变量 famous_person 中,再创建

要显示的消息,并将其存储在变量 message 中,然后打印这条消息。

famous_person = 'Albert Einstein'message = 'A person who never made a mistake never tried anything new.' print(famous_person +" once said,\"" +message +"\"." )

要特别注意\" 转义字符

F5 运行

Albert Einstein once said, “A person who never made a mistake never tried anything new.” 

2-7 剔除人名中的空白:存储一个人名,并在其开头和末尾都包含一些空白字符。

务必至少使用字符组合"\t"和"\n"各一次。
打印这个人名,以显示其开头和末尾的空白。然后,分别使用剔除函数 lstrip()、
rstrip()和 strip()对人名进行处理,并将结果打印出来。

 

test_name = ' Li xiao long 'print("Name is:\n" + test_name)print("\t"+test_name)print(test_name.strip())print(test_name.rstrip())print(test_name.lstrip())

F5运行:

Name is:

 Li xiao long

            Li xiao long

Li xiao long

 Li xiao long

Li xiao long

 

转载于:https://www.cnblogs.com/forcase/p/9801111.html

你可能感兴趣的文章
关于域名解析
查看>>
Android之BroadcastReceiver1
查看>>
嵌入式Linux开发
查看>>
ActivityGroup相关--getLocalActivityManager()
查看>>
MPEG2 PS和TS流格式
查看>>
VS清除缓存
查看>>
怎么就9年了
查看>>
lightswitch binding custom control
查看>>
Sql server 2008 R2 配置管理工具服务显示远程过程调用失败:0x800706be
查看>>
读书笔记_Effective_C++_条款二十五: 考虑写出一个不抛出异常的swap函数
查看>>
HTML5 datalist 标签
查看>>
腾讯PK微软 王者之战一触即发
查看>>
C++ 嵌套类使用(二)
查看>>
Http协议网络对时工具
查看>>
对[yield]的浅究到发现[async][await]
查看>>
阿里云服务器上安装mysql的心路历程(博友们进来看看哦)
查看>>
C 结构体小结
查看>>
js删除提醒
查看>>
Codeforces Round #257 (Div. 2) C. Jzzhu and Chocolate
查看>>
UVA 10177 Sqr/Rects/Cubes/Boxes?
查看>>