ICode国际青少年编程竞赛- Python-2级训练场-基础训练3

ICode国际青少年编程竞赛- Python-2级训练场-基础训练3

1、

python 复制代码
d = Item.x - Dev.x
Dev.step(d)

2、

python 复制代码
d = Spaceship.x - Item.x
Spaceship.step(d)

3、

python 复制代码
d = Item.y - Dev.y
Dev.step(d)

4、

python 复制代码
for i in range(4):
    Spaceship.step(2)
    d = Item[i].x - Dev.x
    Dev.step(d)
    Dev.step(-d)

5、

python 复制代码
for i in range(4):
    d = Item[i].y - Dev.y
    Dev.step(d)
    Dev.step(-d)
    Spaceship.step(3)

6、

python 复制代码
for i in range(5):
    Spaceship.step(3)
    d = Dev.y - Item[i].y
    Dev.step(d)
    Dev.step(-d)

7、

python 复制代码
for i in range(4):
    Spaceship.step(3)
    if Spaceship.y < Item[i].y:
        Dev.step(4)
        Dev.step(-4)

8、

python 复制代码
for i in range(6):
    d = Item[3].y - Flyer[i].y
    Flyer[i].step(d)
Dev.step(Item[4].x - Dev.x)

9、

python 复制代码
for i in range(5):
    d = Item[i].x - Flyer[i].x
    if d < 0:
        d = -d
    Flyer[i].step(d)
for i in range(5):
    Dev.step(3)
    Dev.turnRight()
    Dev.step(2)
    Dev.turnLeft()

10、

python 复制代码
for i in range(8):
    d = Item[i].x - Flyer[i].x
    if d < 0:
        d = -d
    Flyer[i].step(d)
for i in range(5):
    Dev.step(3)
    Dev.turnRight()
    Dev.step(2)
    Dev.turnLeft()

11、

python 复制代码
for i in range(5):
    Spaceship.step(3)
    if not Item[i].broken():
        Dev.step(5)
        Dev.step(-5)

12、

python 复制代码
for i in range(4):

    Spaceship.step(3)
    if not Item[i].broken():
        Dev.step(4)
        Dev.step(-4)

13、

python 复制代码
for i in range(6):
    Spaceship.step(2)
    if not Item[i].broken():
        Spaceship.turnLeft()
        Spaceship.step(4)
        Spaceship.turnLeft()
        Spaceship.turnLeft()
        Spaceship.step(4)
        Spaceship.turnLeft()

14、

python 复制代码
for i in range(6):
    Dev.step(3)
    Dev.turnLeft()
    Dev.step(2)
    if not Item[i].broken():
        Dev.step(3)
        Dev.step(-3)
    Dev.turnRight()

15、

python 复制代码
for i in range(8):
    if i < 3 or i > 4:
        Flyer[i].step(3)
Dev.step(Item[3].x - Dev.x)

16、

python 复制代码
for i in range(12):
    if i < 4 or i > 7:
        Flyer[i].step(1)
for i in range(4):
    Dev.step(4)
    Dev.turnRight()
    Dev.step(3)
    Dev.turnLeft()
    Dev.step(2)
    Dev.turnRight()

17、

python 复制代码
for i in range(8):
    if i > 1 and i < 7:
        Flyer[i].step(3)
Dev.step(Item[3].x - Dev.x)

18、

python 复制代码
for i in range(6):
    if i > 1 and i < 5:
        Flyer[i].step(2)
Dev.step(Item.y - Dev.y)

19、

python 复制代码
for i in range(12):
    if 9 > i > 2:
        Flyer[i].step(2)
for i in range(3):
    Dev.step(7)
    Dev.turnRight()

20、

python 复制代码
for i in range(8):
    if 7 > i > 2:
        Flyer[i].step(3)
for i in range(4):
    Dev.step(2)
    Dev.turnRight()
    Dev.step(3)
    Dev.turnLeft()
相关推荐
小徐敲java1 小时前
python使用s7协议与plc进行数据通讯(HslCommunication模拟)
开发语言·python
猫头虎1 小时前
如何解决 pip install 编译报错 fatal error: hdf5.h: No such file or directory(h5py)问题
人工智能·python·pycharm·开源·beautifulsoup·ai编程·pip
p***23361 小时前
python的sql解析库-sqlparse
数据库·python·sql
陈奕昆1 小时前
n8n实战营Day1课时3:高频节点解析+Webhook表单同步Excel实操
人工智能·python·n8n
深蓝电商API2 小时前
动态 Token、加密参数逆向全流程:从原理到实战破解
爬虫·python
qq_17082750 CNC注塑机数采2 小时前
【Python TensorFlow】 TCN-GRU时间序列卷积门控循环神经网络时序预测算法(附代码)
python·rnn·神经网络·机器学习·gru·tensorflow·tcn
java1234_小锋2 小时前
基于Python深度学习的车辆车牌识别系统(PyTorch2卷积神经网络CNN+OpenCV4实现)视频教程 - 切割车牌矩阵获取车牌字符
python·深度学习·cnn·车牌识别
u***28472 小时前
Python连接SQL SEVER数据库全流程
数据库·python·sql
测试19982 小时前
接口测试工具之postman详解
自动化测试·软件测试·python·测试工具·测试用例·接口测试·postman
q***57502 小时前
问题:Flask应用中的用户会话(Session)管理失效
后端·python·flask