在本教程中,我们将借助示例了解 Python String upper() 方法。
upper()
方法将字符串中的所有小写字符转换为大写字符并返回。
示例
message = 'python is fun'
# convert message to uppercase
print(message.upper())
# Output: PYTHON IS FUN
用法:
用法:
string.upper()
参数:
upper()
方法不带任何参数。
返回:
upper()
方法从给定字符串返回大写字符串。它将所有小写字符转换为大写。
如果不存在小写字符,则返回原始字符串。
示例 1:将字符串转换为大写
# example string
string = "this should be uppercase!"
print(string.upper())
# string with numbers
# all alphabets should be lowercase
string = "Th!s Sh0uLd B3 uPp3rCas3!"
print(string.upper())
输出
THIS SHOULD BE UPPERCASE! TH!S SH0ULD B3 UPP3RCAS3!
示例 2:upper() 如何在程序中使用?
# first string
firstString = "python is awesome!"
# second string
secondString = "PyThOn Is AwEsOmE!"
if(firstString.upper() == secondString.upper()):
print("The strings are same.")
else:
print("The strings are not same.")
输出
The strings are same.
注意:如果要转换为小写字符串,请使用String lower.你也可以使用String swapcase在小写到大写之间交换。
相关用法
- Python String upper()用法及代码示例
- Python String Center()用法及代码示例
- Python String decode()用法及代码示例
- Python String join()用法及代码示例
- Python String casefold()用法及代码示例
- Python String isalnum()用法及代码示例
- Python String rsplit()用法及代码示例
- Python String startswith()用法及代码示例
- Python String rpartition()用法及代码示例
- Python String splitlines()用法及代码示例
- Python String isprintable()用法及代码示例
- Python String translate()用法及代码示例
- Python String title()用法及代码示例
- Python String replace()用法及代码示例
- Python String split()用法及代码示例
- Python String format_map()用法及代码示例
- Python String zfill()用法及代码示例
- Python String max()用法及代码示例
- Python String isspace()用法及代码示例
- Python String strip()用法及代码示例
注:本文由纯净天空筛选整理自 Python String upper()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。