Browse Source

Lottospiel wurde erstellt

Max 5 years ago
commit
50d42d4998
1 changed files with 14 additions and 0 deletions
  1. 14 0
      Lotto.py

+ 14 - 0
Lotto.py

@@ -0,0 +1,14 @@
+import random as r
+list=[]
+zahl =0
+for a in range (6):
+	while zahl in list:
+		zahl=r.randint(1,49)
+	list.append(zahl)
+	if zahl not in list:
+		zahl=r.randint(1,49)
+		list.append(zahl)
+print list
+
+szahl=r.randint(1,10)
+print szahl