Skip to content

Instantly share code, notes, and snippets.

@miklevin
Created July 16, 2019 19:21
Show Gist options
  • Save miklevin/d20f15c0c7a369d1448f248943261126 to your computer and use it in GitHub Desktop.
Save miklevin/d20f15c0c7a369d1448f248943261126 to your computer and use it in GitHub Desktop.
Add a print() like function but big ASCII text-art, great for delineating program-sections
from pyfiglet import Figlet
fig = lambda x : print(Figlet(font='standard', width=200).renderText(x))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment