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