Question
Create a smiley face. Create a house using a triangle on top of a square for the roof and a rectangle for a door. Create
Create a smiley face.
Create a house using a triangle on top of a square for the roof and a rectangle for a door.
Create a tic tac toe board with some Xs and Os
When you are done, take a screenshot of your code and paste it into this document. Then take a screenshot of your drawing and paste it in the document. When done, save this file as a PDF and upload it to D2L.
Turtle Cheat Sheet
The first line in your program should be: import turtle
Name your turtle: name = turtle.Turtle()
Use some combination of the following commands to draw (the numbers can be changed to change the size of the line/circle/angle):
name.forward(100)
name.right(90)
name.left(90)
name.circle(100)
name.penup()
name.pendown()
name.setpos(x,y)
The last line in your program should be: turtle.done()
Paste your python code here:
Paste a screenshot of your drawing here:
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started