You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.2 KiB
36 lines
1.2 KiB
###  Python Programming
|
|
|
|
<!---
|
|
This assignment was developed by Sonyl
|
|
|
|
Questions? Comments?
|
|
1. Log an issue to this repo to alert me of a problem.
|
|
2. Suggest an edit yourself by forking this repo, making edits, and submitting a pull request with your changes back to our master branch.
|
|
3. Hit me up on Slack at @sonylnagale.
|
|
--->
|
|
|
|
# Unit 3 Lab: Object-Oriented Programming
|
|
|
|
## Overview
|
|
Welcome to the Unit 3 lab!
|
|
|
|
Our goal is that at the end of the Unit 5 lab, you'll have an app that prints out the Rotten Tomatoes rating for any movie a user enters. We're getting closer!
|
|
|
|
Right now, let's use object-oriented programming concepts to improve our code. Specifically, we'll be using dictionaries and classes.
|
|
|
|
------------
|
|
|
|
## Deliverables
|
|
|
|
You're going to continue building this locally from where you left off with the last lab, however you'll write all of your code in a new notebook.
|
|
|
|
## Requirements:
|
|
|
|
1. You have a `Movie` class.
|
|
1. You have a `Media` class.
|
|
1. You have docstrings on each function.
|
|
|
|
|
|
## Directions
|
|
|
|
Please see the starter code notebook included in this repository for directions. |