Setzt `Turtle.speed (0)` notwendig, wenn wir Turtle.tracer (0)

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Setzt `Turtle.speed (0)` notwendig, wenn wir Turtle.tracer (0)

by Anonymous » 05 Mar 2025, 13:01

Gibt es einen Unterschied zwischen: < /p>

Code: Select all

import turtle
turtle.tracer(0)
turtle.speed(0)
while True:
turtle.goto(turtle.xcor()+1)
turtle.update()
< /code>
und: < /p>
import turtle
turtle.tracer(0)
while True:
turtle.goto(turtle.xcor()+1)
turtle.update()
Ich habe gehört>

Top