
# https://www.globalsino.com/ICs/
# Print the third digit in a cell value


import csv

filename = r"C:\0Python\Stocks\IndividualStocks\AAPL.csv"
f = open(filename, "rt")
myReader = csv.reader(f)
next(myReader)
for row in myReader:
    print(row[6][2])
    
    
