阿幕 发表于 2020-11-10 21:53:00

python中move函数是什么意思

import math
def 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函数是什么意思

小伤口 发表于 2020-11-14 15:03:13

move就是你创的函数丫
就是你写的代码

小伤口 发表于 2020-11-14 15:31:01

nx = x + step * math.cos(angle)
    ny = y - step*math.sin(angle)
    return nx,ny
这个就是 你的move函数
就是输入x,y输出x加上x的余弦输出y减去他的正弦
页: [1]
查看完整版本: python中move函数是什么意思