Answers for "drawing window in turtle python"

3

create a window turtle python

import turtle

# Create the window
wn = turtle.Screen()
wn.setup(800, 600) # Dimensions
wn.bgcolor("black") # Background color
wn.title("Window") # Title

# Main loop
while True:
  window.update() # Update window
Posted by: Guest on December-22-2020

Python Answers by Framework

Browse Popular Code Answers by Language