首页
编程
java
php
前端
首页
编程
java
php
前端
python中根据表达式求值,max((1,2,3)*2)求值
(1,2,3)*2的结果是:(1, 2, 3, 1, 2, 3)
所以 max((1, 2, 3, 1, 2, 3))的结果是3
点击展开全文