-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathascii-banner-generator.py
54 lines (50 loc) · 2.67 KB
/
ascii-banner-generator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from pyfiglet import Figlet
print ('''
***************************************************
* _ ___ ___ ___ ___ _____ _____ _______ *
* /_\ / __|/ __|_ _|_ _| |_ _| __\ \/ /_ _| *
* / _ \\__ \ (__ | | | | | | | _| > < | | *
* /_/ \_\___/\___|___|___| |_| |___/_/\_\ |_| *
* *
* ___ ___ _ _ ___ ___ _ _____ ___ ___ *
* / __| __| \| | __| _ \ /_\_ _/ _ \| _ \ *
* | (_ | _|| .` | _|| / / _ \| || (_) | / *
* \___|___|_|\_|___|_|_\/_/ \_\_| \___/|_|_\ *
* *
* coded by R3dHULK *
* *
***************************************************
* popular ascii text are shown below : *
* *
* 1. Graffiti *
* 2. Small *
* 3. Big *
* 4. Bulbhead *
* 5. Alphabet *
* 6. Avatar *
* 7. Banner 3-d *
* 8. Acrobatic *
* 9. Doh *
* 10. Babyface lame *
* 11. Isometric1 *
* 12. Letters *
* 13. Alligator *
* 14. Dotmatrix *
* 15. Block *
* 16. Bubble *
* 17. Doom *
* 18. Digital *
* 19. Slant *
* 20. Graceful *
* 21. Doh *
* 22. Epic *
* 23. 5lineoblique *
* 24. Standard *
* *
* 😊 Choose Your Favourite Font 😊 *
* *
***************************************************
''')
custom_fig = Figlet(font=(input(" ==> Enter Your Choice 👉 ")))
print(custom_fig.renderText(input(" ==> Enter Your Text 👉 ")))
input ("Enter To Exit")