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