Python swapcase()方法
Python swapcase()方法
Python swapcase() 方法用于对字符串的大小写字母进行转换。
语法
swapcase()方法语法:
str.swapcase();
参数
- NA。
返回值
返回大小写字母转换后生成的新字符串。
实例
以下实例展示了swapcase()函数的使用方法:
#!/usr/bin/python str = "this is string example....wow/b64/"; print str.swapcase(); str = "THIS IS STRING EXAMPLE....WOW/b64/"; print str.swapcase();
以上实例输出结果如下:
THIS IS STRING EXAMPLE....WOW/b64/ this is string example....wow/b64/
相关文章
- Python break 语句
- Python pass 语句
- Python 日期和时间
- Python 哈希表
- Python 图形
- Python 图算法
- Python 算法类
- Python3 基础语法
- Python3 字典(Dictionary)
- Python3 XML 解析
- Python3 JSON 解析
- Python File flush() 方法
- Python File fileno() 方法
- Python os.chmod() 方法
- Python os.fsync() 方法
- Python os.isatty() 方法
- Python decode()方法
- Python 字典 Dictionary cmp()方法
- Python 字典 Dictionary str()方法
- Python 字典 Dictionary keys()方法