Dateien nach "/" hochladen

in bearbeitung
This commit is contained in:
Domenik Rath 2023-08-03 10:10:53 +02:00
parent f3cd333a94
commit 6717a99968

15
GUI.py Normal file
View File

@ -0,0 +1,15 @@
import tkinter as tk
root = tk.Tk()
label1 = tk.Label(root, text="Schere, Stein, Papier",
font=("times", 30))
label1.grid(row=0, column=1)
sp1_wert=tk.StringVar()
eingabefeld=tk.Entry(root, textvariable=sp1_wert, show="*", font=(30))
eingabefeld.grid(row=1)
sp2_wert=tk.StringVar()
eingabefeld2=tk.Entry(root, textvariable=sp2_wert, show="*", font=(30) )
eingabefeld2.grid(row=1, column=2)
root.mainloop()