ICode国际青少年编程竞赛- Python-1级训练场-变量练习

ICode国际青少年编程竞赛- Python-1级训练场-变量练习

1、

python 复制代码
a = 8
for i in range(8):
    Dev.step(a)
    Dev.turnRight()
    a -= 1

2、

python 复制代码
a = 3
for i in range(4):
    Dev.step(a)
    Dev.turnRight()
    a = a + 1
Dev.step(5)

3、

python 复制代码
a = 4
for i in range(4):
    Dev.step(2)
    Dev.step(-5)
    Dev.step(3)
    Spaceship.step(a)
    a -= 1

4、

python 复制代码
a = 1
for i in range(3):
    Spaceship.step(2)
    Spaceship.turnRight()
    Spaceship.step(a)
    Spaceship.turnLeft()
    a *= 3

5、

python 复制代码
a = 3
for i in range(4):
    Dev.step(a)
    Dev.turnRight()
    Dev.step(-3)
    Dev.step(3)
    a += 1

6、

python 复制代码
a = 6
for i in range(4):
    Dev.step(a)
    Dev.turnRight()
    Dev.step(2)
    Dev.turnRight()
    Dev.step(a)
    Dev.turnLeft()
    a -= 1

7、

python 复制代码
a = 8   # 4 2 1
for i in range(4):
    Dev.step(a)
    Dev.turnRight()
    a /= 2
for i in range(3):
    Dev.step(-2)
    Dev.turnLeft()

8、

python 复制代码
a = 6  # 5 4 3
for i in range(3):
    Dev.step(a)
    Dev.turnRight()
    a -= 1
for i in range(3):
    Spaceship.step(a + 1)
    Spaceship.turnLeft()
    a -= 1

9、

python 复制代码
a = 2
b = 4
for i in range(4):
    Dev.step(a)
    Dev.turnRight()
    Dev.step(b)
    Dev.step(-b)
    Dev.turnLeft()
    Dev.step(-a)
    Dev.turnLeft()
    a += 2
    b -= 1

10、

python 复制代码
Spaceship.step()
for i in range(4):
    Spaceship.step(4 - i)
    Spaceship.turnRight()
    Spaceship.step(1 + i)
    Spaceship.turnLeft()

11、

python 复制代码
a = 5
for i in range(5):
    Spaceship.step(2)
    
    Dev.step(-a)
    Dev.step(a)
    
    a -= 2

12、

python 复制代码
a = 5
for i in range(5):
    Dev.step(2)
    Dev.turnRight()
    Dev.step(a)
    Dev.step(-2 * a)
    Dev.step(a)
    Dev.turnLeft()
    a -= 1

13、

python 复制代码
a = 1
for i in range(4):
    Dev.step(a)
    Dev.turnRight()
    Dev.step(a + 2)
    Dev.step(-2 * (a + 2))
    Dev.step(a + 2)
    Dev.turnLeft()
    a += 1

14、

python 复制代码
for i in range(7):
    Dev.step(i + 1)
    Dev.turnRight()
Dev.step(7)
Dev.turnRight()
Dev.step(1)
for i in range(4):
    Spaceship.step(6 - i)
    Spaceship.turnLeft()

15、

python 复制代码
a = 2
for i in range(3):
    Dev.step(a)
    Dev.turnLeft()
    
    Spaceship.step(a)
    Spaceship.turnRight()
    Spaceship.step(a)
    Spaceship.turnLeft()
    
    Dev.step(a)
    Dev.turnRight()
    a += 1

16、

python 复制代码
a = 1
for i in range(3):
    Dev.step(a)  # 1 2 4
    Dev.turnLeft()
    Dev.step(2**(2-i))  # 4 2 1
    Dev.step(-2 * (2**(2-i)))
    Dev.step(2**(2-i))
    Dev.turnRight()
    a *= 2

17、

python 复制代码
a = 1
for i in range(4):
    Spaceship.step(4)
    Dev.step(a)
    Dev.step(-a)
    
    Spaceship.turnRight()
    Spaceship.step(2 * a)
    Spaceship.turnRight()
    Spaceship.turnRight()
    Spaceship.step(2 * a)    
    Spaceship.turnRight()
    a += 1

18、

python 复制代码
a = 1
b = 5
for i in range(3):
    Spaceship.step(a)
    Dev.step(-b)
    Dev.step(b)
    Spaceship.turnRight()
    Spaceship.step(a + 2)
    Spaceship.turnLeft()
    b -= 2
    a += 1

19、

python 复制代码
a = 2
for i in range(5):
    Dev.step(-a)
    Dev.step(8 + i)
    Dev.step(-6 + i)
    Dev.turnRight()
    Dev.step(2)
    Dev.turnLeft()
    a += 2

20、

python 复制代码
a = 7
b = 3
for i in range(4):
    Dev.step(2)
    Dev.turnRight()
    Dev.step(a)
    Dev.step(-a)
    Dev.turnLeft()
    a = a - b
    b -= 1
相关推荐
极客代码几秒前
【Python TensorFlow】入门到精通
开发语言·人工智能·python·深度学习·tensorflow
义小深3 分钟前
TensorFlow|咖啡豆识别
人工智能·python·tensorflow
疯一样的码农7 分钟前
Python 正则表达式(RegEx)
开发语言·python·正则表达式
进击的六角龙1 小时前
Python中处理Excel的基本概念(如工作簿、工作表等)
开发语言·python·excel
一只爱好编程的程序猿1 小时前
Java后台生成指定路径下创建指定名称的文件
java·python·数据下载
Aniay_ivy2 小时前
深入探索 Java 8 Stream 流:高效操作与应用场景
java·开发语言·python
gonghw4032 小时前
DearPyGui学习
python·gui
明月看潮生2 小时前
青少年编程与数学 02-003 Go语言网络编程 09课题、Cookie
青少年编程·golang·网络编程·编程与数学
向阳12182 小时前
Bert快速入门
人工智能·python·自然语言处理·bert
engchina2 小时前
Neo4j 和 Python 初学者指南:如何使用可选关系匹配优化 Cypher 查询
数据库·python·neo4j