Advertisement
here2share

# Tk_label_with_bg_color.py

Jun 15th, 2015
344
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. # Tk_label_with_bg_color.py
  2.  
  3. from Tkinter import *
  4.  
  5. root = Tk()
  6.  
  7. label = Label(root, text="Backgroung Color Added", bg="yellow")
  8. label.pack()
  9.  
  10. root.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement