From b5f434ac6b73ce05997f91a3292eec49ffe88f2d Mon Sep 17 00:00:00 2001 From: dimartinoma102424 Date: Thu, 6 Nov 2025 16:05:56 +0100 Subject: [PATCH] =?UTF-8?q?=C3=ADnit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- compute.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/compute.py b/compute.py index ab15a13..6d735d1 100644 --- a/compute.py +++ b/compute.py @@ -43,7 +43,8 @@ def rot_2D(angle_degrees: float) -> Matrix: ] return rotation_matrix -matrix = [[1,2,3], [2,3,4]] +if __name__ == "__main__": + matrix = [[1,2,3], [2,3,4]] -print("Matrix A:") -print(tabulate(matrix)) \ No newline at end of file + print("Matrix A:") + print(tabulate(matrix)) \ No newline at end of file