Python 3 – 字符串 max() 方法
描述
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