You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
def print_green(text): |
|
print(f"\033[92m{text}\033[0m") |
|
|
|
def print_red(text): |
|
print(f"\033[91m{text}\033[0m") |
|
|
|
def print_yellow(text): |
|
print(f"\033[93m{text}\033[0m") |
|
|
|
def print_blue(text): |
|
print(f"\033[94m{text}\033[0m") |