Print BIG Words on Console - using python, bit by bit -
i need write big word on console, each character of word should comprise of parts, , each part reveal on screen, pretty attached picture
is there python library can me, have searched enough couldn't find far
to print ascii-art words, should @ pyfiglet library
https://github.com/pwaller/pyfiglet
to effect want, simple script be:
import os import time pyfiglet import figlet f = figlet(font='slant') word = 'hello' curr_word = '' char in word: os.system('reset') #assuming platform linux, clears screen curr_word += char; print f.rendertext(curr_word) time.sleep(1)
(note: haven't tested script, concept should correct)
Comments
Post a Comment