from Tkinter import *
def menu(sefl):
print"Cac mon an!"
giaodien = Tk()
giatri = IntVar()
click = Button(giaodien, text="Button")
click.bind('<Button-1>',menu)
click.pack();
thanhtruot = Scale(giaodien, orient=HORIZONTAL, to=255,variable=giatri,length=255, label='Gia tri:'
thanhtruot.pack()
giaodien.mainloop()
Chương trình báo lỗi phần thanhtruot.pack()
Thanks mọi người nhiều!!