/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/python/lab-1127-002/main.py
17 строк
240 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
import turtle t = turtle.Turtle() screen = turtle.Screen() step = 8 def left(): t.setx(t.xcor() - step) def right(): t.setx(t.xcor() + step) screen.onkey(left, "Left") screen.onkey(right, "Right") screen.listen() turtle.done()