Python 字符串 swapcase()方法
Python的swapcase()方法将字符串中的字符从大写转换为小写,反之亦然。它不需要任何参数,并在大小写转换后返回一个字符串。
语法
swapcase()
参数
无参数
返回值
返回一个字符串。
让我们看一些swapcase()方法的示例来了解它的功能。
示例1
这是一个简单的示例,使用swapcase()方法将大写字母转换为小写字母。
# Python String swapcase() method
# Declaring variable
str = "HELLO JAVATPOINT"
# Calling function
str2 = str.swapcase()
# Displaying result
print (str2)
输出:
hello javatpoint
示例2
该示例描述了从小写转换为大写。
# Python String swapcase() method
# Declaring variable
str = "hello javatpoint"
# Calling function
str2 = str.swapcase()
# Displaying result
print (str2)
输出:
HELLO JAVATPOINT
示例3
如果字符串是驼峰形式的,该方法的输出也将是驼峰形式的。所有小写字母将转换为大写字母,反之亦然。
# Python String swapcase() method
# Declaring variable
str = "Hello JavTpoint"
# Calling function
str2 = str.swapcase()
# Displaying result
print (str2)
输出:
hELLO jAVtPOINT