Explorar el Código

Übung1
14,01,19

stcgche2 hace 5 años
padre
commit
ea08a3bbbf
Se han modificado 1 ficheros con 12 adiciones y 0 borrados
  1. 12 0
      Ü1

+ 12 - 0
Ü1

@@ -0,0 +1,12 @@
+import random
+list = []
+n = 0
+while n<16:
+     zahl = random.randint(1,49)
+     if zahl in list:
+       pass
+     elif zahl not in list:
+       list.append(zahl)
+       n = n + 1
+print list
+exit()