Answers for "how to create new turtle"

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
0

how do you create a variable in python turtle

import turtle

frank = turtle.Turtle()

frank.shape("turtle")

# then to create a variable you write (you can call your var anything): 

def variable_name():
for i in range(4)
  frank.forward(20)
  frank.right(90)
  
 #then to run this you just right


variable_name()
Posted by: Guest on May-31-2021

Python Answers by Framework

Browse Popular Code Answers by Language