Utilizando a biblioteca turtle e os comandos para mover a tartaruga, segue em anexo a imagem da atividade. Lembrando que os códigos devem funcionar no Python.
Anexos:
Soluções para a tarefa
Respondido por
1
Resposta:
Quadrado →
from turtle import *
for i in range(4):
forward(50)
right(90)
done()
X →
from turtle import *
def letterX(length):
shapesize(length / 10, 1 / 10) # assuming default turtle image
for angle in range(-45, 91, 135):
tilt(angle)
stamp()
tilt(-45)
shapesize(1)
done()
letterX(100)
Explicação:
Perguntas interessantes