橘子味的心
标题:Python3 数字Number Sqrt 方法

Python3 数字Number Sqrt 方法

#!/usr/bin/python3
import math   # This will import math module

print ("math.sqrt(100) : ", math.sqrt(100))
print ("math.sqrt(7) : ", math.sqrt(7))
print ("math.sqrt(math.pi) : ", math.sqrt(math.pi))

目录

分类