Python max()方法

2021-09-04 15:11 更新

Python max()方法


描述

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

語法

max()方法語法:

max(str)

參數(shù)

  • str -- 字符串。

返回值

返回字符串中最大的字母。

實例

以下實例展示了max()函數(shù)的使用方法:

#!/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);

以上實例輸出結(jié)果如下:

Max character: y
Max character: x
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號