I do know a bit of Python, am however new to Pyodide and have no experience in Javascript. I am looking for an easy way to display results in the browser:
%% md
a + b = HERE_I_WANT_TO_DISPLAY_THE_RESULT
%% py
import numpy as np
a = np.array([[1],[2]])
b = np.array([1],[2],[3])
result = a+b
Following this Pyodide demo https://alpha.iodide.io/notebooks/300/ I think it might have something do with how to print matrices in javascript?