课程
/后端开发
/Python
/初识Python
2018-05-24
源自:初识Python 6-1
正在回答
import math
print " x "+" "+" tan(x)"+" atan(x)"
x = 0.0
while x <= 1:
print "%.3f" % x +" "+"%.10f" % math.tan(x)+" "+"%.10f" % math.atan(x)
x+=0.1
bu zhidao
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序