Skip to content

Instantly share code, notes, and snippets.

@ericball1
ericball1 / phonebook.py
Created November 11, 2015 23:16
Python Phone Book
#
# 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