import os
N = b"\n"
msg = b"Hello world!"
for i in range(12,0,-1):
    os.write(1, msg[:i])
    os.write(1, N)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: