py import circle
circle(-150,45)
当前坐标(0,0) 则圆心(0,-150)顺时针45度
即正顺逆负,正左逆右
*circle(-150,45,5) 线折五次
import math
math.pow()
from math import*
tan()
pow()
...
== import math as m
m.tan()
m.pow()
...
from math import tan
只一个函数
circle(-150,45)
当前坐标(0,0) 则圆心(0,-150)顺时针45度
即正顺逆负,正左逆右
*circle(-150,45,5) 线折五次
import math
math.pow()
from math import*
tan()
pow()
...
== import math as m
m.tan()
m.pow()
...
from math import tan
只一个函数