Minggu, 05 Oktober 2025

PYTHON - TKINTER - MESSAGE

 





import tkinter


def main():

    main_window = tkinter.Tk()


    main_window.title('Message')

    str_quote = "Real friends are hard to find, difficult to leave and impossible to forget."

    msg = tkinter.Message(main_window, text = str_quote,

                 padx=20, pady=20, bd=5)

    msg.config(bg='green', fg='white', font=('verdana', 30))

    msg.pack()

    main_window.mainloop()


main()

Tidak ada komentar: