This commit is contained in:
Евгений Храмов 2023-05-31 21:18:11 +03:00
parent 1cb3565b94
commit 25f75b3d2a

@ -152,9 +152,10 @@ def print_line(*text, flag=""):
color = colorama.Fore.CYAN
else:
color = colorama.Fore.WHITE
print(colorama.Fore.LIGHTGREEN_EX + "." * 140)
len_text = len(text)
print(colorama.Fore.LIGHTGREEN_EX + "." * len_text)
print(color, *text)
print(colorama.Fore.LIGHTGREEN_EX + "." * 140 + colorama.Style.RESET_ALL)
print(colorama.Fore.LIGHTGREEN_EX + "." * len_text + colorama.Style.RESET_ALL)
def check_int(number=""):