在Python中,可以使用upper()
函數(shù)將小寫字母轉化為大寫字母。
以下是一個示例:
# 將小寫字母轉化為大寫字母
string = 'hello world'
uppercase_string = string.upper()
print(uppercase_string)
輸出結果為:
HELLO WORLD
在上面的示例中,upper()
函數(shù)用于將字符串string
中的小寫字母轉化為大寫字母,并將結果賦值給變量uppercase_string
。然后,使用print()
函數(shù)將結果打印出來。