# Author: Scott Wehrwein
# Date: 05/12/2021
# Example program that reads a CSV (comma-separated values) file.

file_obj = open("AboutYou.csv", "r")
for line in file_obj:
    print(line)
    
file_obj.seek(0)

headers = file_obj.readline() # get headers from first line
headers_list = headers.split(",")
print("Columns:")
for hdr in headers_list:
    print("  ", hdr)

