python中move函数是什么意思
import mathdef move(x,y,step,angle=0):
nx = x + step * math.cos(angle)
ny = y - step*math.sin(angle)
return nx,ny
x, y = move(100,100,60,math.pi /6)
print(x,y)
大家好,在联系一道题目,其中遇到了一些问题
不明白
x, y = move(100,100,60,math.pi /6)
move函数是什么意思
move就是你创的函数丫
就是你写的代码 nx = x + step * math.cos(angle)
ny = y - step*math.sin(angle)
return nx,ny
这个就是 你的move函数
就是输入x,y输出x加上x的余弦输出y减去他的正弦
页:
[1]