“Como usar a tartaruga em Python no Python 3.9” Respostas de código

Como usar a tartaruga em Python no Python 3.9

import turtle # imports it
whateverYouWantToCallIt = turtle.Turtle() # adds it to the project
#code
whateverYouWantToCallIt.forward(10) # moves whateverYouWantToCallIt forward
whateverYouWantToCallIt.color("purple") # color
whateverYouWantToCallIt.left(90) # turns him 90 degrees
whateverYouWantToCallIt.right(90) # turns him 90 degrees the other direction
Scared Creeper

Como importar tartaruga em python

import turtle
win = turtle.Screen()
Elated Emu

Respostas semelhantes a “Como usar a tartaruga em Python no Python 3.9”

Perguntas semelhantes a “Como usar a tartaruga em Python no Python 3.9”

Mais respostas relacionadas para “Como usar a tartaruga em Python no Python 3.9” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código