Python3——数学标准库使用

Posted gjh99

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3——数学标准库使用相关的知识,希望对你有一定的参考价值。

import random
print(random.randint(1,9))  #随机数 每次取出一个 1-9
print(random.choice([a,b,c]))  #随机取出一个字母

# 更多math库函数请参考:https://docs.python.org/3/library/math.html
import math
print(math.pi)   #圆周率
a = 2.51
b = 5.21
print(math.ceil(a))        #对x向上取整 3
print(math.floor(a))       #向下取整  2
# print(math.pow(x,y))       # x的y次方 4.0
print(math.sqrt(4))        # 2的平方根 2.0
aa = [1,2,3]
print(math.fsum(aa))       # 对集合内的元素求和 6.0

技术图片

以上是关于Python3——数学标准库使用的主要内容,如果未能解决你的问题,请参考以下文章

python常用到哪些库?

Python3标准库:array数组

python标准库 - 数学库和随机数库

Python3---标准库json

Python3---标准库---urllib

Python3标准库:contextlib上下文管理器工具