Python3 min()方法
Python 3 教程
· 2019-02-06 07:13:47
描述
Python min() 方法返回字符串中最小的字母。
语法
min()方法语法:
min(str)
参数
- str -- 字符串。
返回值
返回字符串中最小的字母。
实例
以下实例展示了min()函数的使用方法:
#!/usr/bin/python3
str = "codercto";
print ("最小字符: " + min(str));
以上实例输出结果如下:
最小字符: b
点击查看所有 Python 3 教程 文章: https://codercto.com/courses/l/10.html
Network Algorithmics,
George Varghese / Morgan Kaufmann / 2004-12-29 / USD 75.95
In designing a network device, you make dozens of decisions that affect the speed with which it will perform - sometimes for better, but sometimes for worse. "Network Algorithmics" provides a complete......一起来看看 《Network Algorithmics,》 这本书的介绍吧!