After teaching kids for a while, I've been a little troubled on what is the best way to teach them hello world in Python without shortcutting on some fundamentals.
The common way is:
print("hello world")
Now, I would like to suggest the following in...