Update README.md

This commit is contained in:
William Mantly 2015-07-28 18:20:31 -04:00
parent c50e0d6dfc
commit 74fa97da57

View File

@ -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:
```