Python3 string.max()方法

2019-10-16 23:11:18
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