Probiere folgendes Beispiel in IDLE:
>>> from Tkinter import *
>>> root=Tk()
>>> lab=Label(root,text="Viel Spass mit dem Tkinter-Tutorial")
>>> lab.pack()
>>> root.mainloop()
Gib jetzt ein:
>>> root=Tk()
>>> lab=Label(root,text="Hallo G10b")
>>> lab.pack()
>>> root.mainloop()
Probiere auch:
>>> root=Tk()
>>> lab=Label(root,text="Hallo G10b",background="red")
>>> lab.pack()
>>> root.mainloop()
Zweites Beispiel:
>>> from Tkinter import *
>>> root=Tk()
>>> but=Button(root,text="Info")
>>> but.pack()
>>> root.mainloop()
Öffne den Editor und gib ein (abspeichern unter tkButton1.py
):
from Tkinter import *
def nachricht():
lab=Label(root,text="Hallo G10b!")
lab.pack()
root=Tk()
but=Button(root,text="Info",command=nachricht)
but.pack()
root.mainloop()
Probiere auch (abspeichern unter tkButton2.py
):
from Tkinter import *
def nachricht():
lab=Label(root,text="Viel Spass mit dem Tkinter-Tutorial")
lab.pack()
root=Tk()
but=Button(root,bitmap="questhead",command=nachricht)
but.pack()
root.mainloop()
Beschreibe die Veränderungen!
→ sp, 2016-12-02