Python字串max()
方法從字串str
返回最大字母字元。
語法
以下是max()
方法的語法 -
max(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