Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download

"a" vs "print a" with typeset_mode(True)

Views: 155
# "a" vs "print a" with typeset_mode(True) import numpy as np a = np.array([1,2,3]) typeset_mode(True,display=False) a print a
[1 2 3]\text{\texttt{[1{ }2{ }3]}}
[1 2 3]
# "a" vs "print a" with typeset_mode(True) import numpy as np a = np.array([1,2,3]) typeset_mode(True) a print a
[1 2 3]
[1 2 3]