

# https://www.globalsino.com/ICs/
# Creates a dictionary from a csv file


# Dic structure > "Key":"Value"
import csv

theFile = r"C:\GlobalSino20230219\ICs\ForDictionary.csv"

reader = csv.reader(open(theFile, 'r'))
myDict = {}
for row in reader:
    k, v = row
    myDict[k] = v

print(myDict)

print("\n")

print(myDict["Camry"])
