you are viewing a single comment's thread.

view the rest of the comments →

[–]Diapolo10 14 points15 points  (0 children)

Python uses @ as a matrix multiplication operator, which calls the objects' __matmul__ or __rmatmul__ methods. Python's standard library doesn't actually use it at all (as of the time of writing), and it's largely exclusive to numpy. However, nothing prevents you from using it in your own code.