共计 263 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,可以使用 lower()
方法将字符串转换为小写,upper()
方法将字符串转换为大写。以下是实现大小写转换的示例代码:
# 将字符串转换为小写
string = "HELLO"
lower_case = string.lower()
print(lower_case) # 输出 "hello"
# 将字符串转换为大写
string = "world"
upper_case = string.upper()
print(upper_case) # 输出 "WORLD"
这些方法返回转换后的新字符串,原始字符串不会发生更改。
丸趣 TV 网 – 提供最优质的资源集合!
正文完