ICode国际青少年编程竞赛- Python-1级训练场-多变量应用 1、
a 1
b 2
for i in range(4):Spaceship.step(a)Dev.step(b)Dev.step(-b)a a 1b b 12、
a 2
b 5
for i in range(3):Spaceship.turnLeft()Spaceship.step(a)Spaceship.turnRight()Spaceship.step(b)a a …
ICode国际青少年编程竞赛- Python-1级训练场-变量的计算 1、
a 2
for i in range(4):Spaceship.step(a-1)Dev.step(a)Dev.step(-a)a a 12、 a 2
for i in range(4):Dev.step(2 a)Dev.step(-a)Dev.turnRight()a a 13、 y 4
for i in range(3):Dev.step(y)Dev.turnRigh…