标签:img htm math div com floor 字母 margin 集合
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
标签:img htm math div com floor 字母 margin 集合
原文地址:https://www.cnblogs.com/gjh99/p/12101391.html