Python字符串大小写转换

lower()、upper()、capitalize()、title()、swapcase()
这几个方法分别用来将字符串转换为小写、大写字符串、将字符串首字母变为大写、将每个首字母变为大写以及大小写互换,
这几个方法都是生成新字符串,并不对原字符串做任何修改
'''
s='What is Your Name?'

s2=s.lower()
print(s2) #返回小写字符串
# what iss your name?

print(s.upper())    #返回大写字符串
# WHAT IS YOUR NAME?

print(s.capitalize())   #字符串首字符大写
# What is your name?

print(s.title())    #每个单词的首字母大写
# What Is Your Name?

print(s.swapcase()) #大小写互换
# wHAT IS yOUR nAME?

你可能感兴趣的:(python)