21 lines
549 B
Python
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])
|