Python怎么将字符串转换为大写或小写形式

45次阅读
没有评论

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

Python 中可以使用字符串的方法 upper()lower()来将字符串转换为大写和小写形式。

示例代码:

string = "Hello, World!"
upper_string = string.upper()
lower_string = string.lower()

print(upper_string)  # 输出结果为 "HELLO, WORLD!"
print(lower_string)  # 输出结果为 "hello, world!"

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

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