I need help importing data like this from a text file:
Orville Wright 21 July 1988
Rogelio Holloway 13 September 1988
Marjorie Figueroa 9 October 1988
and display it on the python shell like this:
Name
- O. Wright
- R. Holloway
- M. Figueroa
Birth date
- 21 July 1988
- 13 September 1988
- 9 October 1988
Read lines of files into a list In Python, how do I read a file line-by-line into a list?
Enumeration https://docs.python.org/2.3/whatsnew/section-enumerate.html