#coding:utf-8
#string and loop
import os
import time

a = '''
Drowning in an endless sea
Take some time and stay with me
Keep me in the strength of your arms
Keep me safe
Safe and sound.
-Lift me up
'''
a2 = '''
飛翔(はばた)いたら 戻らないと言って
目指したのは 白い 白い あの雲
突き抜けたら みつかると知って
振り切るほど 蒼い 蒼い あの空
蒼い 蒼い あの空
蒼い 蒼い あの空
-blue bird
'''

# for print letter by letter
for x in a:
    print (x)
    time.sleep(1)


#for (printing)showing letter 1by1
str =""
for x in a2:
    str += x
    print("\r"+str+"\033[5A",end="")
    time.sleep(1)
print ("\n\n\n\n\n")    
            
実行結果