1.3 Python Tutorial 13
1.3 Python Tutorial 13
While lists organize data based on sequential indexes Dictionaries instead use key / value
pairs. A key / value pair could be fName : "Derek" where fName is the key and "Derek" is the
value. Here is some code to help this make sense.
CODE
print(employees)
Create an array of customer dictionaries and the output should look like this :
Solution
while True:
if create_entry == "n":
That’s it for this video. In the next part of this tutorial we will cover recursive functions, which
are functions that execute themselves.