Python min()方法
Python min()方法
Python min() 方法返回字符串中最小的字母。
語(yǔ)法
min()方法語(yǔ)法:
min(str)
參數(shù)
- str -- 字符串。
返回值
返回字符串中最小的字母。
實(shí)例
以下實(shí)例展示了min()函數(shù)的使用方法:
#!/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);
以上實(shí)例輸出結(jié)果如下:
Min character: ! Min character: !
相關(guān)文章
- Python 簡(jiǎn)介
- Python 運(yùn)算符
- Python 面向?qū)ο?/a>
- Python 算法類
- Python3 數(shù)字(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()方法