From 78b5d758352ad9e5c41a1cdcfe1a87a96b6c9b91 Mon Sep 17 00:00:00 2001 From: RochoElLocho Date: Fri, 4 Aug 2023 12:06:30 +0200 Subject: [PATCH] Eingabe unkenntlich gemacht --- GUI.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GUI.py b/GUI.py index bb76297..c7fb29e 100644 --- a/GUI.py +++ b/GUI.py @@ -33,9 +33,9 @@ def ok(): Label(root, text="S = Schere, R = Stein, P = Papier ", font=("times",25)).grid(column=1) -s1_wert = Entry(root,font=(28)) +s1_wert = Entry(root,font=(28), show="*") s1_wert.grid(row=1) -s2_wert = Entry(root,font=(28)) +s2_wert = Entry(root,font=(28), show="*") s2_wert.grid(row=1,column=2) Button(root, text="Wählen", command=ok, font=(30)).grid(row=2, column=1)