Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python how to add turtle in 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
 
PREVIOUS NEXT
Tagged: #python #add #turtle #tkinter
ADD COMMENT
Topic
Name
3+6 =