Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.36 KB | None | 0 0
  1. def __init__(self, raiz=None):
  2.         tk.Frame.__init__(self,raiz)
  3.         raiz= tk.Tk()
  4.         raiz.title("CULTURE")
  5.         raiz.config(bg="white")
  6.         self.pack(fill="y")
  7.         self.config(bg="pink")
  8.         self.config(width="550", height="250")
  9.         self.config(bd=35)
  10.         self.config(relief="sunken")
  11.         self.config(cursor="pirate")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement