[python]字符串总结-创新互联
1
message1="I love you ,China!"
print(message1)
message2="wO aI ni zhong guo"
print(message2.title()) ##首字母大写
print(message2.upper()) ##字符串全部大写
print(message2.lower()) ##字符串全部小写
message3=message1.title()+" "+message2.upper() ##字符串拼接
print(message3)
2
print("\tleslie") ##/t制表符
print("language:\nchinese\nenglish\njanpanese") ##换行符
print("language:\n\tchinese\t\nenglish\n\tjanpanese") ##制表符和换行符混用
3
favorite_language = ' python '
favorite_language
favorite_language.rstrip() ##删除结尾空白
favorite_language
favorite_language.lstrip() ##删除开头空白
favorite_language
favorite_language.strip() ##删除字符串开头和结尾空白
4
name1=input("name1:")
print("hello "+name1+",would you like to learn some python today?")
5
name1=input("name1:")
print(name1.lower())
print(name1.upper())
print(name1.title())
6
print('Albert Einstein once said,"A person who never made a mistake never tried anything new."')
7
famous_person = input("famous_person:") ##输入一个变量
print(famous_person.title()+' once said,"A person who never made a mistake never tried anything new."')
8
famous_person = "\txu\nlijian\thaha\nhaha\t"
print(famous_person)
print(famous_person.lstrip()) ##删除开头空格
print(famous_person.rstrip()) ##删除结尾空格
print(famous_person.strip()) ##删除开头和结尾空格
print(famous_person.replace('\n','').replace('\t','')) ##连续替换\n和\t为空
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
当前题目:[python]字符串总结-创新互联
文章链接:http://ybzwz.com/article/ehedh.html