Week_2 - johnelwart/Projects GitHub Wiki

Home

Homework 6: How to Become a Millionaire

Description: This program uses an amount saved, number of years, and interest rate value from the user and calculates the value of that investment after that amount of time and print it to the screen using the python turtle.

Input(s):

  • Amount of money saved
  • Number of years saved
  • Annual interest rate

Output(s):

  • The value of the investment

Source Code

Homework 7: Concentric Squares

Description: This program draws 10 concentric squares that progressively get smaller in size and darker in color using a for loop.

Input(s): None

Output(s):

image

Source Code

Homework 8: Bullseye

Description: This program draws concentric circles using the python turtle to form a bullseye.

Input(s): None

Output(s):

image

Source Code

Homework 9: Four Circles

Description: This program lets the user enter a radius value and then it will draw 4 circles next to each other of that radius.

Input(s):

  • Circle radius

Output(s):

image

Source Code

Lab 2: Using the Turtle

Description: This program gets a input from the user for a radius value and the number of circles the user wants drawn and then draws that chain of circles.

Input(s):

  • Radius
  • Number of circles

Output(s):

image

Source Code