Assume the user inputs his file. The format is something like:
Name\t182909876\n
Name 2\t090090090\n
etc...
I want to plot this data onto a chart, a grid, or a table.
data_list = []
with infile as f:
data = [map(str, line.split('\t')) for line in f]