can anybody tell me how to make an letter or word moving animation on python output after coding | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

can anybody tell me how to make an letter or word moving animation on python output after coding

no tkinter should be used

4th May 2018, 8:15 AM
Anmol Dhakal
4 Answers
+ 1
thanks
4th May 2018, 9:11 AM
Anmol Dhakal
+ 7
You have to use some kind of a special module for that anyway, so this won't work in a "static" Sololearn.
4th May 2018, 8:18 AM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
+ 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)
4th May 2018, 8:59 AM
Ulisses Cruz
Ulisses Cruz - avatar
+ 1
ooo can you provide me the moving letter or word animation code and also tell me which moduel should i have to use
4th May 2018, 8:20 AM
Anmol Dhakal