gpt4 book ai didi

Python Turtle - turtle 定位

转载 作者:太空宇宙 更新时间:2023-11-04 05:32:12 27 4
gpt4 key购买 nike

如果 turtle 在一组坐标之上,我想让 turtle 回到地板上:

像这样:

floor = -323

if turtle above floor:
turtle.goto(floor)

但我不知道 'if' 语句是如何工作的,因为你不能简单地把 'if turtle above floor' 有什么帮助吗?

最佳答案

假设您的“下限”位于 y=-323,您可能会这样做:

floor = -323

if turtle.ycor() > floor:
turtle.sety(floor)

您使用 turtle.ycor() 检索 turtle 的 y 坐标,检查它是否大于 floor,如果它被设置为等于地板的 y 坐标。

关于Python Turtle - turtle 定位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36798620/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com