位置:首頁 > 腳本語言 > Python教學 > Python String max()方法

Python String max()方法

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

語法

以下是max()方法的語法:

max(str)

參數

  • str --這是被返回的最大值字母字符的字符串。

返回值

此方法從字符串str中返回最大值字母字符。

例子

下麵的例子顯示了max()方法的使用。

#!/usr/bin/python

str = "this is really a string example....wow!!!";
print "Max character: " + max(str);

str = "this is a string example....wow!!!";
print "Max character: " + max(str);

當我們運行上麵的程序,它會產生以下結果:

Max character: y
Max character: x