
#python_tip by @raymondh:
several ways to interactively display results of a calculation:
# Two liner
>>> q = 3.5 * 1.5
>>> q
5.25
# Second expression
>>> q = 3.5 * 1.5; q
5.25
# Walrus
>>> (q := 3.5 * 1.5)
5.25
# Invisible
>>> q = 3.5 * 1.5
English

