Python String swapcase() 方法

Python String swapcase() 方法

Python swapcase() 方法用于对字符串的大小写字母进行转换,即将大写字母转换为小写字母,小写字母会转换为大写字母

Python String swapcase() 语法

swapcase() 方法语法:

str.swapcase();

Python String swapcase() 参数

  • NA。

Python String swapcase() 返回值

返回大小写字母转换后生成的新字符串。

Python String swapcase() 示例1

以下实例展示了 swapcase() 函数的使用方法:

#!/usr/bin/python

str = "APIDEMOS";
print ( str.swapcase() );

str = "apidemos";
print ( str.swapcase() );

str = "abCDE--ApiDemos";
print ( str.swapcase() );

输出:

Python String swapcase() 方法

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程