共计 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 网 – 提供最优质的资源集合!
正文完