Greetings! Ready to make a little art with programming? Let's give it a try! We're using the website Python Sandbox in order to code a drawing!
We've gone through a few days with the Python Turtle tutorial, learning how to give commands in Python to our precious little turtle friend. Now, for this assignment, you must make a bubble version of your initials. There should be three letters (if you have more or fewer initials, you can eliminate or add a letter). The bubble letters must have:
A background color
Rounded edges
At least three colors (overall, not within a single letter)
At least 5 commands
A "bubble" effect (not just a letter with simple lines)
An immediate outcome (or at close to immediate as possible)
100 lines of code at minimum
As a reminder, since this program doesn't have a save feature, make sure to copy your programming daily into a Notepad file or Google Doc! If you'd like an example of my coding, you can load it up here!
Here's the quick list of commands you might need to accomplish all the pieces of this assignment:
t.penup()
t.pendown()
t.forward(x)
t.right(x)
t.left(x)
t.color("")
t.begin_fill()
t.end_fill()
t.pensize(x)
t.circle(radius, extent, steps)
t.setposition(x, y)
t.speed(0-10)