Python小刀 -title()- lower()- upper()- 调整名字大小写
Posted a001ai-es
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python小刀 -title()- lower()- upper()- 调整名字大小写相关的知识,希望对你有一定的参考价值。
调整名字大小写:
- 将用户输入的姓名存到一个变量中,再以小写,大写和首字母大写的方式显示这个人的名字,并向用户显示一条消息。显示的消息应非常简单:Hello XXX,welcome to the world of Python!
-
name = input("请输入你的名字:") print(name) #字符串改为小写 print("Hello " + name.lower()+",welcome to the world of Python!") #字符串改为大写 print("Hello " + name.upper()+",,welcome to the world of Python!") #单词首字母大写 print("Hello " + name.title()+",,welcome to the world of Python!")
输出结果:
请输入你的名字:ivAN Sun ivAN Sun Hello ivan sun,welcome to the world of Python! Hello IVAN SUN,,welcome to the world of Python! Hello Ivan Sun,,welcome to the world of Python!
以上是关于Python小刀 -title()- lower()- upper()- 调整名字大小写的主要内容,如果未能解决你的问题,请参考以下文章
python中的 upper() lower()capitalize()title()方法
Python title()upper()lower()方法--string
python3----转换大小写(upper lower capitalize and title)
python字符串相关函数 *title *upper *lower *swapcase *len *count *find *index *starts with *endswith