Good day!
I have data from excel file. Just for example:
Data from excel:
excelfile =[Name Number
Ronald 3
Bautista 4]
so using this code;
A = pd.read_excel (r'excelfile.xlsx')
I can import my data from excel to python.
Now I want to import my data to GUI which I made using Python. Here's my program for my GUI.
from tkinter import *
import pandas as pd
A = pd.read_excel (r'excelfile.xlsx')
main_screen = Tk()
main_screen.geometry("300x250")
main_screen.title("Database")
main_screen.mainloop()
So how can I import my data to my GUI? Such that the output looks like this:
Thanks for the help!