Python lower()方法
Python lower()方法
Python lower() 方法转换字符串中所有大写字符为小写。
语法
lower()方法语法:
str.lower()
参数
- 无。
返回值
返回将字符串中所有大写字符转换为小写后生成的字符串。
实例
以下实例展示了lower()的使用方法:
#!/usr/bin/python str = "THIS IS STRING EXAMPLE....WOW/b64/"; print str.lower();
以上实例输出结果如下:
this is string example....wow/b64/
相关文章
- Python break 语句
- Python 操作 MySQL 数据库
- Python XML 解析
- Python 数组
- Python 列表
- Python 矩阵
- Python 回溯
- Python 树遍历算法
- Python 图算法
- Python 算法理由
- Python3 简介
- Python File isatty() 方法
- Python os.fchdir() 方法
- Python os.mkdir() 方法
- Python os.remove() 方法
- Python os.stat_float_times() 方法
- Python ljust()方法
- Python swapcase()方法
- Python List sort()方法
- Python 字典 Dictionary keys()方法