Python 官方文档:入门教程 => 点击学习
https://docs.python.org/3/library/function.html #Python官方网址 # 取绝对值 print(a
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'))) #可以调用函数执行
本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注编程网的更多内容!
--结束END--
本文标题: python基础之内置函数
本文链接: https://lsjlt.com/news/155202.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0