Learn practical skills, build real-world projects, and advance your career
!pip install jovian --upgrade --quiet
WARNING: You are using pip version 20.1; however, version 20.1.1 is available. You should consider upgrading via the '/opt/conda/bin/python3.7 -m pip install --upgrade pip' command.
import jovian
from IPython.display import display, Math
display(Math("4+3 = "+str(4+3)))
$\displaystyle 4+3 = 7$
x = 4
y = 5

display(Math(f"{x}+{y} = {x+y}"))
$\displaystyle 4+5 = 9$