max(str)
str -- 這是需要返回最大英文字母的字串。
#!/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