From df5001e620badd33fc70abcd9007089df2a07e49 Mon Sep 17 00:00:00 2001 From: FumaNet <64550739+FumaNet@users.noreply.github.com> Date: Sat, 29 Jan 2022 12:16:18 +0100 Subject: [PATCH] Update README.md print without parentheses returns an error in Python - "SyntaxError: Missing parentheses in call to 'print'. Did you mean print(invR)?" --- packages/Python/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/Python/README.md b/packages/Python/README.md index c3ecbd8..6ae63a3 100644 --- a/packages/Python/README.md +++ b/packages/Python/README.md @@ -64,7 +64,7 @@ R = np.array([[0, 0, 1], [1, 0, 0], [0, 1, 0]]) invR = mr.RotInv(R) -print invR +print(invR) ``` ## Using the Package Locally ##