Python中字符串转换大小写的方法是什么

37次阅读
没有评论

共计 277 个字符,预计需要花费 1 分钟才能阅读完成。

Python 中字符串转换大小写的方法有三种:

  1. 使用 upper() 方法将字符串转换为大写。例如:
s = "hello"
s_upper = s.upper()
print(s_upper)  # 输出:HELLO
  1. 使用 lower() 方法将字符串转换为小写。例如:
s = "HELLO"
s_lower = s.lower()
print(s_lower)  # 输出:hello
  1. 使用 title() 方法将字符串中每个单词的首字母转换为大写。例如:
s = "hello world"
s_title = s.title()
print(s_title)  # 输出:Hello World

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2024-04-16发表,共计277字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)