also Funktionen kann ich gar nicht deswegen brauche ich Hilfe also bisher habe ich das hier:
Code: Alles auswählen
from Tkinter import *
main=Tk()
a=Button(main,text=' * ',background='#B1B1B1',borderwidth='5')
a.place(x=5,y=90,height='30',width='40')
b=Button(main,text=' = ',background='#B1B1B1',borderwidth='5')
b.place(x=5,y=120,height='30',width='40')
c=Button(main,text=' 0 ',background='#B1B1B1',borderwidth='5')
c.place(x=5,y=150,height='30',width='40')
d=Button(main,text=' 1 ',background='#B1B1B1',borderwidth='5')
d.place(x=45,y=150,height='30',width='40')
e=Button(main,text=' 2 ',background='#B1B1B1',borderwidth='5')
e.place(x=85,y=150,height='30',width='40')
f=Button(main,text=' 3 ',background='#B1B1B1',borderwidth='5')
f.place(x=125,y=150,height='30',width='40')
g=Button(main,text=' 4 ',background='#B1B1B1',borderwidth='5')
g.place(x=45,y=120,height='30',width='40')
h=Button(main,text=' 5 ',background='#B1B1B1',borderwidth='5')
h.place(x=85,y=120,height='30',width='40')
i=Button(main,text=' 6 ',background='#B1B1B1',borderwidth='5')
i.place(x=125,y=120,height='30',width='40')
j=Button(main,text=' 7 ',background='#B1B1B1',borderwidth='5')
j.place(x=45,y=90,height='30',width='40')
k=Button(main,text=' 8 ',background='#B1B1B1',borderwidth='5')
k.place(x=85,y=90,height='30',width='40')
l=Button(main,text=' 9 ',background='#B1B1B1',borderwidth='5')
l.place(x=125,y=90,height='30',width='40')
m=Button(main,text=' - ',background='#B1B1B1',borderwidth='5')
m.place(x=165,y=150,height='30',width='40')
n=Button(main,text=' + ',background='#B1B1B1',borderwidth='5')
n.place(x=165,y=120,height='30',width='40')
o=Button(main,text=' : ',background='#B1B1B1',borderwidth='5')
o.place(x=165,y=90,height='30',width='40')
k=Button(main,text='delete',background='#B1B1B1',borderwidth='5')
k.place(x=5,y=180,height='30',width='200')
textfenster=Text(main)
textfenster.place(x='5',y='5',height='78',width='198')
main.geometry('500x500')
main.configure(background='navy')
main.mainloop()