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) +