2 Commits 059e849fe7 ... e36da4f9c2

Author SHA1 Message Date
  Dave e36da4f9c2 Merge branch 'master' of http://gogs.es-lab.de/stmaingr/Lotto 5 years ago
  Dave 82194fc75f B====D 5 years ago
1 changed files with 9 additions and 0 deletions
  1. 9 0
      Lotto.py

+ 9 - 0
Lotto.py

@@ -1,6 +1,9 @@
+#Variablen
 import random as r
 list=[]
 zahl =0
+
+#Lottozahlen 6 aus 49
 for a in range (6):
 	while zahl in list:
 		zahl=r.randint(1,49)
@@ -8,7 +11,11 @@ for a in range (6):
 	if zahl not in list:
 		zahl=r.randint(1,49)
 		list.append(zahl)
+#<<<<<<< HEAD
+#Superzahl
+#=======
 #a=0
+#>>>>>>> 059e849fe708e6381eafeb7c0b781386e2e83ca9
 a=0
 #Hier wird die liste ausgegeben
 while a <len(list):
@@ -17,3 +24,5 @@ while a <len(list):
 szahl=r.randint(1,10)
 #hier wird die Superzahl wiedergegeben
 print szahl
+
+#Das wird richtig gut ;)