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.
Andrew Riddle e19fcdcd69
first commit
5 years ago
..
solution-code first commit 5 years ago
starter-code first commit 5 years ago
README.md first commit 5 years ago

README.md

Unit 1 Lab: Variables


Overview

Welcome to the first unit lab!

Throughout the course, there is a lab at the end of each unit. Each lab builds upon the prior.

At the end of the Unit 5 lab, you're going to have a mocked application capable of calling an API and returning a result, using object oriented structure.

To get started, let's set up some variables and print out their values.


Deliverables

You're going to build this locally on your computer.

  1. A jupyter notebook that defines variables and prints result to stdout (an output cell).
  2. If you don't already have Jupyter installed, please follow these instructions.

Directions

Our first goal is just to get the app printing out movie titles and ratings. We'll hard-code in some values for now.

  1. Create a variable movie_title and set it to Back to the Future.
  2. Create a variable movie_ratings to hold the rating and set it to 8.
  3. Make a print statement that says, The rating for <movie_title> is <movie_rating>. It should call your new variables, so for example, The rating for Back to the Future is 8.