From b80f1b78a83fa861d4c072c1d6d7cd19a52ef565 Mon Sep 17 00:00:00 2001 From: msnau <79276215+msnau@users.noreply.github.com> Date: Thu, 27 Aug 2026 21:13:32 +0200 Subject: [PATCH] =?UTF-8?q?Added=20Gl=C3=BCcksspiel?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Lotto.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Lotto.py diff --git a/Lotto.py b/Lotto.py new file mode 100644 index 0000000..fe341c1 --- /dev/null +++ b/Lotto.py @@ -0,0 +1,10 @@ +import random + +lottozahlen_alle = list(range(1,50)) + +gewinnzahlen = random.sample(lottozahlen_alle, 6) + +gewinnzahlen.sort() + +print(gewinnzahlen) +