python基础之内置函数
https://docs.python.org/3/library/function.html #python官方网址
# 取绝对值 print(abs(-34)) # 取参数的近似值,精度与版本有关 print(round(3.66)) # 求次方 print(3**5) print(pow(3,5)) #求3的5次方 # max求最大值 print(max([23,123,13455,14664345,243565]))
# eval 执行表达式 a,b,c=1,2,3 print('动态执行的函数{}'.format(eval('a+b+c'))) #可以调用函数执行
总结
本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注hwidc的更多内容!
【文章原创作者:http://www.1234xp.com/shsgf.html转载请保留出处】