Python cara menambahkan kura -kura di tkinter

from tkinter import *
from turtle import RawTurtle, TurtleScreen
"""
Will make a tk window and a TurtleScreen with a turtle in it
"""
root = Tk()              # the tk window
can = Canvas(root)       # a canvas what will turn into turtle screen
tsc = TurtleScreen(can)  # the screen inside tk window
tur = RawTurtle(tsc)     # the turtle; what you can do any turtle stuff with
Water Coder