ICode国际青少年编程竞赛- Python-2级训练场-识别循环规律2

ICode国际青少年编程竞赛- Python-2级训练场-识别循环规律2

1、

python 复制代码
for i in range(3):
    Dev.step(3)
    Dev.turnRight()
    Dev.step(4)
    Dev.turnLeft()

2、

python 复制代码
for i in range(3):
    Spaceship.step(3)
    Spaceship.turnRight()
    Spaceship.step(1)

3、

python 复制代码
Dev.turnLeft()
Dev.step(Dev.x - Item[1].x)
for i in range(2):
    Dev.turnRight()
    Dev.step(4)
    Dev.turnLeft()
    Dev.step(-4)

4、

python 复制代码
for i in range(3):
    Dev.turnRight()
    Dev.step(3)
    Dev.turnLeft()
    Dev.step(3)

5、

python 复制代码
for i in range(3):
    Dev.turnLeft()
    Dev.step(2)
    Dev.turnRight()
    Dev.step(2)

6、

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

7、

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

8、

python 复制代码
for i in range(4):
    Dev.step(5)
    Dev.turnRight()
    Dev.step(3)
    Dev.turnRight()
    Dev.step(4)
    Dev.step(-2)
    Dev.turnLeft()

9、

python 复制代码
for i in range(4):
    Dev.step(-1)
    Dev.step(5)
    Dev.step(-1)
    Dev.turnRight()

10、

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

11、

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

12、

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

13、

python 复制代码
for i in range(3):
    Dev.turnLeft()
    Dev.step(1)
    Dev.turnRight()
    Dev.step(3)
for i in range(3):
    Dev.turnLeft()
    Dev.step(5)

14、

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

15、

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

16、

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

17、

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

18、

python 复制代码
for i in range(3):
    Dev.step(-4)
    Dev.turnRight()
    Dev.step(-5)

19、

python 复制代码
for i in range(3):
    Spaceship.step(4)
    Spaceship.turnRight()
    Spaceship.step(2)
    Spaceship.turnLeft()
    Spaceship.step(3)
    Spaceship.turnRight()
    Spaceship.step(2)

20、

python 复制代码
for i in range(4):
    Spaceship.step(3)
    Spaceship.turnRight()
    Spaceship.step(4)
    Spaceship.turnLeft()
    Spaceship.step(2)
    Spaceship.turnRight()
相关推荐
denghai邓海17 分钟前
红黑树删除之向上调整
python·b+树
封步宇AIGC43 分钟前
量化交易系统开发-实时行情自动化交易-3.4.1.2.A股交易数据
人工智能·python·机器学习·数据挖掘
何曾参静谧44 分钟前
「Py」Python基础篇 之 Python都可以做哪些自动化?
开发语言·python·自动化
Prejudices1 小时前
C++如何调用Python脚本
开发语言·c++·python
我狠狠地刷刷刷刷刷1 小时前
中文分词模拟器
开发语言·python·算法
Jam-Young1 小时前
Python的装饰器
开发语言·python
Mr.咕咕1 小时前
Django 搭建数据管理web——商品管理
前端·python·django
AnFany2 小时前
LeetCode【0028】找出字符串中第一个匹配项的下标
python·算法·leetcode·字符串·kmp·字符串匹配
爪哇学长2 小时前
Java API类与接口:日期类型与集合的使用
java·开发语言·python
封步宇AIGC2 小时前
量化交易系统开发-实时行情自动化交易-3.4.1.6.A股宏观经济数据
人工智能·python·机器学习·数据挖掘