Python字串max()方法

2019-10-16 23:06:39

Python字串max()方法從字串str返回最大字母字元。

語法

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

max(str)

引數

  • str - 這是需要從中返回最大字母字元的字串。

返回值

  • 此方法從給定字串str中返回最大字母字元。

範例

以下範例顯示了max()方法的用法 -

#!/usr/bin/python3

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

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

當執行上面的程式,它產生以下結果 -

Max character: y
Max character: x