+ 2
can anybody tell me how to make an letter or word moving animation on python output after coding
no tkinter should be used
4 Respostas
+ 1
thanks
+ 7
You have to use some kind of a special module for that anyway, so this won't work in a "static" Sololearn.
+ 3
hello Let's Lyrics,
here is how you can make a little animation.
It works in my linux terminal but it will not work in Sololearn as Kuba Siekierzyński pointed out.
Try this:
from time import sleep
spinner = ['|', '/', '-', '\\', '-']
while True:
for c in spinner:
print('\r%s' % c, end='')
sleep(.2)
+ 1
ooo can you provide me the moving letter or word animation code and also tell me which moduel should i have to use