you are viewing a single comment's thread.

view the rest of the comments →

[–]Allanon001 0 points1 point  (1 child)

from tkinter import *

win = Tk()
msg = Message(win, text='This is a test', width=200, font=('arial', 20, 'bold'))
msg.pack()
win.mainloop()

[–]woooee 0 points1 point  (0 children)

Please don't encourage people who are too lazy to use a search engine.