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

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

1、

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

2、

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

3、

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

4、

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

5、

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

6、

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

7、

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

8、

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

9、

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

10、

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

11、

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

12、

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

13、

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

    Dev.step(-5)
    Dev.step(5)
    
    Spaceship.turnRight()
    Spaceship.step(4)
    Dev.step(1)
    Dev.step(-1)

14、

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

15、

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

16、

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

17、

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

18、

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

19、

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

20、

python 复制代码
for i in range(4):
    Dev.step(6)
    Dev.turnLeft()
    Dev.step(3)
    Dev.step(-5)
    Dev.step(2)
    Dev.turnRight()
    Dev.step(-6)
    Dev.turnLeft()
相关推荐
FksLiao8 分钟前
Superset安装
python
L Jiawen15 分钟前
【Python · PyTorch】卷积神经网络(基础概念)
pytorch·python·cnn
goomind20 分钟前
深度学习模型评价指标介绍
人工智能·python·深度学习·计算机视觉
->yjy29 分钟前
wordcloud库基本介绍
python
2401_8401922731 分钟前
python基础大杂烩
linux·开发语言·python
abments36 分钟前
JavaScript逆向爬虫教程-------基础篇之常用的编码与加密介绍(python和js实现)
javascript·爬虫·python
Amo Xiang2 小时前
Django 2024全栈开发指南(一):框架简介、环境搭建与项目结构
python·django
Amo Xiang2 小时前
Django 2024全栈开发指南(二):Django项目配置详解
python·django
这个男人是小帅3 小时前
【GAT】 代码详解 (1) 运行方法【pytorch】可运行版本
人工智能·pytorch·python·深度学习·分类
小白学大数据6 小时前
Python爬虫开发中的分析与方案制定
开发语言·c++·爬虫·python