This kind of guy.
Use pyfiglet https://github.com/pwaller/pyfiglet
from pyfiglet import Figlet
f = Figlet(font="slant")
msg = f.renderText("hello world")
print(msg)
only this. You can specify something like Figlet (font = "big")
Recommended Posts