Name

Write a program that will draw your name.

Code Help

from turtle import *
screen = getscreen()
tom = Turtle()

tom.forward(100)
tom.backward(100)
tom.right(90)
tom.left(90)
tom.penup()
tom.pendown()

Targets

State the commands to move and rotate the turtle

Identify the correct commands needed to solve a problem

Write a Python program to draw your name