Dateien nach "/" hochladen

This commit is contained in:
Domenik Rath 2023-08-04 09:48:06 +02:00
parent da3d333ddf
commit d901aee93c

19
GUI.py Normal file
View File

@ -0,0 +1,19 @@
from tkinter import *
from tkinter import messagebox
root = Tk()
def ok():
name = s1_wert.get()
return messagebox.showinfo( f"", name)
Label(root, text="S = Schere, R = Stein, P = Papier ").pack()
s1_wert = Entry(root)
s1_wert.pack()
Button(root, text="Wählen", command=ok).pack()
root.mainloop()