📜  Python string.swapcase()方法

📅  最后修改于: 2020-10-30 06:43:44             🧑  作者: Mango

Python字符串swapcase()方法

Python swapcase()方法将字符串字符的大小写从大写转换为小写,反之亦然。它不需要任何参数,并且在大小写转换后返回一个字符串。

签名

swapcase()

参量

无参数

返回

它返回一个字符串。

让我们看一下swapcase()方法的一些例子,以了解它的功能。

Python字符串swapcase()方法示例1

这是一个简单的示例,使用swapcase()方法将大写转换为小写。

# Python String swapcase() method
# Declaring variable
str = "HELLO JAVATPOINT"
# Calling function
str2 = str.swapcase()
# Displaying result
print (str2)

输出:

hello javatpoint

Python字符串swapcase()方法示例2

本示例描述了从小写到大写的转换。

# Python String swapcase() method
# Declaring variable
str = "hello javatpoint"
# Calling function
str2 = str.swapcase()
# Displaying result
print (str2)

输出:

HELLO JAVATPOINT

Python字符串swapcase()方法示例3

如果字符串在驼峰式中,则此方法的输出也将在驼峰式中。所有小写字母都将转换为大写字母,反之亦然。

# Python String swapcase() method
# Declaring variable
str = "Hello JavTpoint"
# Calling function
str2 = str.swapcase()
# Displaying result
print (str2)

输出:

hELLO jAVtPOINT