Update README.md

print without parentheses returns an error in Python - "SyntaxError: Missing parentheses in call to 'print'. Did you mean print(invR)?"
This commit is contained in:
FumaNet 2022-01-29 12:16:18 +01:00 committed by GitHub
parent 4a3d25ae0a
commit df5001e620
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ R = np.array([[0, 0, 1],
[1, 0, 0], [1, 0, 0],
[0, 1, 0]]) [0, 1, 0]])
invR = mr.RotInv(R) invR = mr.RotInv(R)
print invR print(invR)
``` ```
## Using the Package Locally ## ## Using the Package Locally ##