oop-labs-collection/labs/2/matrix.py

3 lines
155 B
Python
Raw Normal View History

2023-03-16 23:02:57 +02:00
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)]))