字符串 - 大写
Posted norasgao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串 - 大写相关的知识,希望对你有一定的参考价值。
全字符
str.upper()
eg,
s = ‘ash‘
s.upper()
print(s) #ash
print(s.upper()) #ASH
str.lower()
仅首字母
全串首字母大写
str.capitalize()
一般情况
首字母若为空/数字
eg,
s = ‘a, b‘
s2 = ‘ a, b‘
s3 = ‘1, a, b‘
print(s.capitalize()) #A, b
print(s2.capitalize()) # [_]a, b
print(s3.capitalize()) #1, a, b
字符串中单词的首字母大写
str.title()
eg,
s = ‘ash, ruby‘
print(s.title()) #Ash, Ruby
以上是关于字符串 - 大写的主要内容,如果未能解决你的问题,请参考以下文章