Python max()方法
Python max()方法
Python max() 方法返回字符串中最大的字母。
語(yǔ)法
max()方法語(yǔ)法:
max(str)
參數(shù)
- str -- 字符串。
返回值
返回字符串中最大的字母。
實(shí)例
以下實(shí)例展示了max()函數(shù)的使用方法:
#!/usr/bin/python str = "this is really a string example....wow/b64/"; print "Max character: " + max(str); str = "this is a string example....wow/b64/"; print "Max character: " + max(str);
以上實(shí)例輸出結(jié)果如下:
Max character: y Max character: x
相關(guān)文章
- Python 變量類(lèi)型
- Python continue 語(yǔ)句
- Python Number 數(shù)字
- Python 元組
- Python2 與 Python3?? 版本區(qū)別
- Python 算法設(shè)計(jì)
- Python3 面向?qū)ο?/a>
- Python File fileno() 方法
- Python File seek() 方法
- Python os.chown() 方法
- Python os.close() 方法
- Python os.ftruncate() 方法
- Python os.stat_float_times() 方法
- Python isspace()方法
- Python istitle()方法
- Python 字典 Dictionary get()方法
- Python 字典 Dictionary values()方法
- Python time localtime()方法
- Python time mktime()方法
- Python time strftime() 方法