In this article, we will show a message on the form.
import tkinter as tk
from tkinter import *
root = Tk()
root.title('message..bs')
root.geometry('350x310')
str = "Life is like riding a bicycle,\n To keep your balance,\n You must keep moving.\n *** \n Weak people revenge,\n Strong people forgive, \n Intelligent people ignore. \n \n -Albert Einstein"
message = tk.Message(root, text = str)
message.config(bg='deepskyblue',fg='white', font=('arial', 22, 'italic'))
message.pack()
root.mainloop()
Hope to see you in the next article. Happy coding.
No comments:
Post a Comment