Am looking for best practises of displaying document info in tkinter messagebox
from tkinter import *
from tkinter import messagebox
def profile():
messagebox.showinfo("info","college\tNew student\tGraduating students\noak institue\t202\t210\nPine college\t143\t121")
root =Tk()
root.geometry("200x200")
C = Button(text="copyright",command=profile).pack()
root.mainloop()
I think if am going to type all the info in the document the arrangement is going to get distort and not readable for the user .
I have attached a pdf file named "Display in messagebox tkinter"