import tkinter from tkinter import Tk, Label class Tab: x="" lab = Label(x, text="none") lab.pack() window = Tk() window.mainloop()
import tkinter from tkinter import Tk, Label class Tab: x="" lab = Label(x, text="none") lab.pack() window = Tk() window.mainloop()
class Foo: print "Wow!"
class Foo: def __init__(self): print 'Where is your "Wow!" now?'