reading csv files in tkinter code example
Example 1: how to open csv file in python
import csv
with open('example.csv') as csvfile:
readCSV = csv.reader(csvfile, delimiter=',')
Example 2: read a csv file in pandas
you should be in the same dir as .py file
df = pd.read_csv('your_file_name.csv')