add matrix.py server-side code

This commit is contained in:
dymik739 2023-03-16 23:02:57 +02:00
parent 8f131a0129
commit 1c70783d22
1 changed files with 2 additions and 0 deletions

2
labs/2/matrix.py Normal file
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)]))