from IPython.core.display import display, HTML, Markdown, Image
from datetime import date
today = date.today().strftime("%d/%m/%Y")
display(HTML(f'<h2>Hello, world from Deepnote!</h2><p>This cell was executed at {today}.</p>'))
import random
sample = random.randint(0, 10)
display(Markdown(f'*some markdown* with random number {sample} ***is here*** '))