Mudanças entre as edições de "Python - Alterando as imagens"
De Aulas
(Criou página com '= Recursos = * [https://arisa.com.br/~saulo/aulas/das5334/car_python.zip car_python.zip] Imagens e código fonte = Código = <syntaxhighlight lang=python n> from turtle imp...') |
m (Admin moveu DAS5334 Python - Alterando as imagens para Python - Alterando as imagens) |
(Sem diferença)
|
Edição das 13h30min de 20 de março de 2022
Recursos
- car_python.zip Imagens e código fonte
Código
from turtle import *
from random import *
up = "car_up.gif"
right = "car_right.gif"
down = "car_down.gif"
left = "car_left.gif"
screen = Screen()
screen.addshape(up)
screen.addshape(right)
screen.addshape(down)
screen.addshape(left)
speed(1)
SPEED = 100
while (True):
direction = randint(0, 3)
x, y = pos()
if direction == 0:
shape(up)
sety(y + SPEED)
elif direction == 1:
shape(right)
setx(x + SPEED)
elif direction == 2:
shape(down)
sety(y - SPEED)
elif direction == 3:
shape(left)
setx(x - SPEED)