Python min()方法
Python 教程
· 2019-02-02 15:43:50
描述
Python min() 方法返回字符串中最小的字母。
语法
min()方法语法:
min(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: !
点击查看所有 Python 教程 文章: https://www.codercto.com/courses/l/8.html
Foundation Web Standards
Jonathan Lane、Steve Smith / Friends of ED / 21st July 2008 / $34.99
Foundation Web Standards explores the process of constructing a web site from start to finish. There is more to the process than just knowing HTML! Designers and developers must follow a proper proces......一起来看看 《Foundation Web Standards》 这本书的介绍吧!