Python String max()方法
max()方法返回字符串str中的最大字母字符。
语法
以下是max()方法的语法:
max(str)
参数
-
str --这是被返回的最大值字母字符的字符串。
返回值
此方法从字符串str中返回最大值字母字符。
例子
下面的例子显示了max()方法的使用。
#!/usr/bin/python str = "this is really a string example....wow!!!"; print "Max character: " + max(str); str = "this is a string example....wow!!!"; print "Max character: " + max(str);
当我们运行上面的程序,它会产生以下结果:
Max character: y Max character: x