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"))) #可以调用函数执行
总结
本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注服务器之家的更多内容!
原文链接:https://blog.csdn.net/weixin_44632711/article/details/120614682