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()
相关推荐
ŧ榕树先生12 分钟前
python中的数组模块numpy(一)(适用物联网数据可视化及数据分析)
python·信息可视化·数据分析·numpy
微刻时光3 小时前
影刀RPA实战:爬取网站小说章节写入TXT文件
笔记·爬虫·python·自动化·rpa·影刀·影刀rpa
夜流冰4 小时前
Python - HTTP servers
python
Ambition_LAO4 小时前
BERT--详解
python·bert
人才程序员4 小时前
CSP-J/S 复赛算法 并查集-Hash表
c语言·c++·算法·青少年编程·哈希算法·竞赛·csp
luthane4 小时前
python 实现DFS判断是否是二分图Bipartite算法
python·算法·深度优先
Dovir多多5 小时前
渗透测试入门学习——使用python脚本自动跟踪csrf_token实现对网站登录界面的暴力破解
前端·python·安全·web安全·网络安全·php·csrf
API199701081105 小时前
1688商品评论接口技术深度解析与实战代码实现
开发语言·python·json·php
练习两年半的工程师5 小时前
LeetCode 54 Spiral Matrix 解题思路和python代码
python·算法·leetcode
luthane6 小时前
python 实现bellman ford贝尔曼福特算法
开发语言·python·算法