tksheet is a good option. you can install it by pip install tksheet
this is how you gonna use it
import tkinter as tk
from tksheet import Sheet
root = tk.Tk()
data = [
["A1", "B1", "C1"],
["A2", "B2", "C2"],
]
sheet = Sheet(root, data=data)
sheet.pack(expand=True, fill="both")
root.mainloop()