From 74fa97da576ff7552b76d76ea151dcf4565e8230 Mon Sep 17 00:00:00 2001 From: William Mantly Date: Tue, 28 Jul 2015 18:20:31 -0400 Subject: [PATCH] Update README.md --- 1- python/1-py-variables/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/1- python/1-py-variables/README.md b/1- python/1-py-variables/README.md index 934c8b6..d5bb69a 100644 --- a/1- python/1-py-variables/README.md +++ b/1- python/1-py-variables/README.md @@ -3,13 +3,13 @@ Python Variables, Lists and Dictionaries Create a variable named byte and set it equal to "school". -Create a [list](http://www.tutorialspoint.com/python/python_lists.htm) named instructors and have it contain the strings "Armen", "Chris", and "Greg" +Create a [list](http://www.tutorialspoint.com/python/python_lists.htm) named instructors and have it contain the strings `"Greg"`, `"Ken"`, and `"Billy"` -Create an [tuple](http://www.tutorialspoint.com/python/python_tuples.htm) named students and have it contain the strings "Adolfo", "Benny", "Billy", "Brendan" +Create an [tuple](http://www.tutorialspoint.com/python/python_tuples.htm) named students and have it contain the strings `"Adolfo"`, `"Benny"`, `"Devin"`, `"Brendan"` What's the difference between a list and a tuple? Why use one over the other? -Create a dictionary with the following key-value pairs- "byteAcademy":byte, "instructors":instructors, "students":students +Create a dictionary with the following key-value pairs- `"byteAcademy":byte`, `"instructors":instructors`, `"students":students` Print the keys and values of the dictionary. It should look like this: ```