使脚本等待输入数字

时间:2020-01-29 08:45:34

标签: python if-statement

当我使用i = input时,什么也没发生(没有错误,机器人不会读取按下的1并进入第一个循环)。 我的猜测是输入仅等待用户按下Enter键。用户是否可以按特定的数字来激活下面的if循环?

i=...?

if(i==1)
    current_pose = dType.GetPose(api)
    dType.SetPTPCmdEx(api, 2, x1,  y1,  z1, current_pose[3], 1)
    i=i+1

if(i==2)
    current_pose = dType.GetPose(api)
    dType.SetPTPCmdEx(api, 2, x2,  y2,  z2, current_pose[3], 1)
    i=i-1

0 个答案:

没有答案