Skip to content

Commit

Permalink
Merge pull request #18 from rabi-1/patch-1
Browse files Browse the repository at this point in the history
Create convert text to ASCII
  • Loading branch information
TechVine authored Oct 23, 2022
2 parents 9008bf6 + 47e422e commit 35ea0de
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions convert text to ASCII
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import pyfiglet
from pyfiglet import Figlet

fig = Figlet(font='graffiti')
text = input("Input text")
ascii_text = pyfiglet.figlet_format(text)

print(ascii_text)

0 comments on commit 35ea0de

Please sign in to comment.