共计 263 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,可以使用 upper()
函数将小写字母转化为大写字母。
以下是一个示例:
# 将小写字母转化为大写字母
string = 'hello world'
uppercase_string = string.upper()
print(uppercase_string)
输出结果为:
HELLO WORLD
在上面的示例中,upper()
函数用于将字符串 string
中的小写字母转化为大写字母,并将结果赋值给变量 uppercase_string
。然后,使用print()
函数将结果打印出来。
丸趣 TV 网 – 提供最优质的资源集合!
正文完