Python min()方法
Python min()方法
Python min() 方法返回字符串中最小的字母。
语法
min()方法语法:
min(str)
参数
- str -- 字符串。
返回值
返回字符串中最小的字母。
实例
以下实例展示了min()函数的使用方法:
#!/usr/bin/python str = "this-is-real-string-example....wow/b64/"; print "Min character: " + min(str); str = "this-is-a-string-example....wow/b64/"; print "Min character: " + min(str);
以上实例输出结果如下:
Min character: ! Min character: !
相关文章
- Python 简介
- Python 运算符
- Python 面向对象
- Python 算法类
- Python3 数字(Number)
- Python3 迭代器
- Python os.chmod() 方法
- Python os.fdopen() 方法
- Python os.rename() 方法
- Python os.ttyname() 方法
- Python capitalize()方法
- Python isdecimal()方法
- Python isnumeric()方法
- Python ljust()方法
- Python zfill()方法
- Python 字典 Dictionary str()方法
- Python 字典 Dictionary clear()方法
- Python 字典 Dictionary update()方法
- Python Tuple 元组 cmp()方法
- Python time sleep()方法