标题: 高数、绘制正态分布 [打印本页] 作者: liaoyongwei 时间: 2016-10-24 20:12 标题: 高数、绘制正态分布 #coding=utf-8
a = 0.3 * 3
print a
b = 0.3 / 3
print b
#1除以2的阶乘
c = 1 / 2 ** 10000
print c
import math
a = math.pi
print a
a = math.sqrt(90)
print a
a = math.log10(2*1000)
print a
#X的Y次方
a = math.pow(2,10)
print a
#阶乘
a = math.factorial(3)
print a