Onion13 31 Junior Poster in Training

You could also make it slowly print each string one by one as fast or as slowly as you want doing this program.

from time import sleep

def foo():
    print "Hello"
    sleep(.5)
    print "my"
    sleep(.5)
    print "name"
    sleep(.5)
    print "is"
    sleep(.5)
    print "Matia"
    sleep(.5)
    print "..."
    sleep(.5)

foo()