“Bentuk Python Turtle” Kode Jawaban

Bentuk Python Turtle

from turtle import Turtle, Screen

# shapes: "arrow", "turtle", "circle", "square", "triangle", "classic"
# option 1
my_turtle = Turtle(shape="circle")

# option 2
my_turtle.shape("triangle")

screen = Screen()
screen.exitonclick()
Manga301

cara mengimpor kura -kura di python

import turtle
win = turtle.Screen()
Elated Emu

Turtle Python

 >>> tp = turtle.pos()
 >>> tp
 (0.00,0.00)
 >>> turtle.setpos(60,30)
 >>> turtle.pos()
 (60.00,30.00)
 >>> turtle.setpos((20,80))
 >>> turtle.pos()
 (20.00,80.00)
 >>> turtle.setpos(tp)
 >>> turtle.pos()
 (0.00,0.00)
Long Ladybird

Jawaban yang mirip dengan “Bentuk Python Turtle”

Pertanyaan yang mirip dengan “Bentuk Python Turtle”

Lebih banyak jawaban terkait untuk “Bentuk Python Turtle” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya