精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

Python max()方法

Python max()方法

Python 字符串Python 字符串

Python max() 方法返回字符串中最大的字母。

 

語法

max()方法語法:

max(str)

 

參數

  • str -- 字符串。

 

返回值

返回字符串中最大的字母。

 

實例

以下實例展示了max()函數的使用方法:

#!/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);

以上實例輸出結果如下:

Max character: y
Max character: x

Python 字符串Python 字符串

下一節:Python min()方法

Python 教程

相關文章