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