Tulisan Berjalan di python3

!#/usr/bin/python3

import sys, time

def run(eva):
    for noel in eva:
        sys.stdout.write(noel)
        sys.stdout.flush()
        time.sleep(1)

run("==hallo==")