initial creation

This commit is contained in:
2025-05-20 11:57:43 -04:00
commit c98b612926
8447 changed files with 1862526 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/usr/bin/env python
"""
@author: jstrick
Created on Wed Mar 20 23:52:46 2013
"""
import pickle
with open('presidents.pic','rb') as presidents_in:
presidents = pickle.load(presidents_in)
for term_number, president_info in presidents.items():
print("{:20.20s} {:20.20s} {}".format(
president_info['firstname'],
president_info['lastname'],
president_info['party'],
))