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
相关推荐
web135085886351 小时前
Python大数据可视化:基于python的电影天堂数据可视化_django+hive
python·信息可视化·django
东方芷兰1 小时前
伯克利 CS61A 课堂笔记 11 —— Mutability
笔记·python
不会Hello World的小苗3 小时前
Java——列表(List)
java·python·list
m0_748235956 小时前
Python大数据可视化:基于Python的王者荣耀战队的数据分析系统设计与实现_flask+hadoop+spider
hadoop·python·flask
Dyan_csdn6 小时前
【Python项目】基于Python的Web漏洞挖掘系统
网络·python·安全·web安全
Minner-Scrapy6 小时前
DApp 开发入门指南
开发语言·python·web app
&小刘要学习&6 小时前
anaconda不显示jupyter了?
python·jupyter
jerry-896 小时前
jupyterhub_config配置文件内容
python
奔跑吧邓邓子6 小时前
【Python爬虫(36)】深挖多进程爬虫性能优化:从通信到负载均衡
开发语言·爬虫·python·性能优化·负载均衡·多进程
学长学姐我该怎么办7 小时前
年前集训总结python
python