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.

23 lines
504 B

def print_green(*args):
text = ''
for arg in args:
text += str(arg) + ' '
print(f"\033[92m{text}\033[0m")
def print_red(*args):
text = ''
for arg in args:
text += str(arg) + ' '
print(f"\033[91m{text}\033[0m")
def print_yellow(*args):
text = ''
for arg in args:
text += str(arg) + ' '
print(f"\033[93m{text}\033[0m")
def print_blue(*args):
text = ''
for arg in args:
text += str(arg) + ' '
print(f"\033[94m{text}\033[0m")