removed 6-1_person.py

This commit is contained in:
cheeks 2025-01-26 20:14:07 -05:00
parent 5f4dc65f5e
commit c602e05f84

View File

@ -1,9 +0,0 @@
# Exercise 6-1 Person
# Learning Objective: Create and print a dictionary.
person = {'first_name': 'fred', 'last_name': 'guy', 'age': '66', 'city': 'yonkers'}
print(person['first_name'])
print(person['last_name'])
print(person['age'])
print(person['city'])