Python 3 Strings max() 方法

返回 Python 3 字符串


描述

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


语法

max()方法语法:

max(str)

参数

  • 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

返回 Python 3 字符串

查看笔记

扫码一下
查看教程更方便