Added Glücksspiel

This commit is contained in:
msnau
2026-08-27 21:13:32 +02:00
parent 2891e04afd
commit b80f1b78a8
+10
View File
@@ -0,0 +1,10 @@
import random
lottozahlen_alle = list(range(1,50))
gewinnzahlen = random.sample(lottozahlen_alle, 6)
gewinnzahlen.sort()
print(gewinnzahlen)