finished doing lab2 in wrong variable type

This commit is contained in:
2023-03-18 11:18:59 +02:00
parent 00fba12eb2
commit 3f15c4c724
3 changed files with 20 additions and 5 deletions
+2
View File
@@ -0,0 +1,2 @@
import random
print("Content-Type: text/plain\n\n" + "\n".join([" ".join(list(map(str, [round((random.random()-0.5)*200, 4) for i in range(7)]))) for i in range(7)]))
+2
View File
@@ -0,0 +1,2 @@
import random
print("Content-Type: text/plain\n\n" + "\n".join([" ".join(list(map(str, [random.randint(-40, 40) for i in range(7)]))) for i in range(7)]))