扫码一下
查看教程更方便
Python max() 方法返回字符串中最大的字母。
max()方法语法:
max(str)
返回字符串中最大的字母。
以下实例展示了max()函数的使用方法:
#!/usr/bin/python3
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