This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Python Phone Book by Eric Ball | |
# 11/11/15 | |
# | |
people = [] # Declare new variable "people" and set to an empty list | |
isRunning = True # Declare new variable "isRunning" and set it to True | |
while isRunning: # Loops when "isRunning" is True |