Using set_global_settings I was able to print variables on jupyter-notebook using scientific notation:
import sympy as syfrom sympy.printing.str import StrPrinterStrPrinter.set_global_settings(min=1, max=1)a=sy.Matrix([189.001234])a
However, I still need to set precision:
![enter image description here]()