color для точек

This commit is contained in:
Евгений Храмов 2023-06-02 18:11:15 +03:00
parent 4bf547aefd
commit ce45d3fa7c

@ -200,9 +200,9 @@ def print_line(*text, flag="", sep=" ", end="\n"):
len_text = str(*text)
len_text = len_text.split("\n")
max_length = max(len(string) for string in len_text)+2
print(colorama.Fore.LIGHTGREEN_EX + "." * max_length)
print(color + "." * max_length)
print(color, *text, sep=sep, end=end)
print(colorama.Fore.LIGHTGREEN_EX + "." * max_length + colorama.Style.RESET_ALL)
print(color + "." * max_length + colorama.Style.RESET_ALL)
def check_int(number=""):