Python max()方法

Python 字符串 Python 字符串


描述

Python max() 方法返回字符串中最大的字母。

语法

max()方法语法:

max(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

Python 字符串 Python 字符串

上一篇:Python maketrans()方法

下一篇:Python min()方法

关注微信小程序
程序员编程王-随时随地学编程

扫描二维码
程序员编程王

扫一扫关注最新编程教程