Files
courses/py3interm/ANSWERS/pres_dates.py
T
2025-05-20 11:57:43 -04:00

21 lines
549 B
Python

#!/usr/bin/python
pres_lname = input("Enter president's last name: ")
with open("../DATA/presidents.txt") as PRES:
for rec in PRES:
flds = rec.split(":")
if flds[1] == pres_lname:
if flds[4] == "NONE":
alive = True
else:
alive = False
print("NAME: {} {}".format(flds[2], flds[1]))
print("BIRTH: ", flds[3])
print("DEATH: ", end='')
if alive:
print('* * *')
else:
print(flds[4])