-
Notifications
You must be signed in to change notification settings - Fork 0
/
logo_maker.py
64 lines (54 loc) · 1.28 KB
/
logo_maker.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
55
56
57
58
59
60
61
62
63
64
import pyfiglet
from colorama import (init, Fore)
import os
import time
##################################################
init()
os.system('cls')
ascii_banner = pyfiglet.figlet_format("AIDA")#<~~~~~~ TYPE LOGO HERE
##################################################
def green_color():
print(Fore.GREEN)
def red_color():
print(Fore.RED)
def blue_color():
print(Fore.BLUE)
def yellow_color():
print(Fore.YELLOW)
def magenta_color():
print(Fore.MAGENTA)
def white_color():
print(Fore.WHITE)
##################################################
def green_logo():
green_color()
print(ascii_banner)
white_color()
def red_logo():
red_color()
print(ascii_banner)
white_color()
def blue_logo():
blue_color()
print(ascii_banner)
white_color()
def yellow_logo():
yellow_color()
print(ascii_banner)
white_color()
def magenta_logo():
magenta_color()
print(ascii_banner)
white_color()
def white_logo():
white_color()
print(ascii_banner)
white_color()
##################################################
def test_logos():
green_logo()
red_logo()
blue_logo()
yellow_logo()
white_logo()
##################################################