1
0
forked from ovh/pci-test
pci-test/ex1/c.py

12 lines
242 B
Python

import sys
import pyfiglet
# check if executed without text and print help
if len(sys.argv) < 2:
print("Usage: python c.py 'text to be converted'")
sys.exit(1)
text = " ".join(sys.argv[1:])
f = pyfiglet.figlet_format(text)
print(f)