Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 686 Bytes

instructions.md

File metadata and controls

14 lines (13 loc) · 686 Bytes
  1. Print Your Name

  2. Multiply the numbers 8435 and 9983663 and print the answer

  3. Print the area of a square given the side length

  4. Print the numbers 1 to 100

  5. Create a function that returns a grade based on passing in a score “A” = 95-100 “B” = 90-95 “C” = 80-90 “F” everything else

  6. Create a function that returns the mean of a python list of numbers

  7. Create a class object for a car initialized with attributes of color, brand, and year. The class should have functions of “get_color”, “set_color”, etc.

  8. Create a car that is red 2020 ford and print it’s color.

  9. Create a function to print out the Fibonacci sequence up to 100