len(*text)
This commit is contained in:
parent
21e35bb78b
commit
a02d81cf80
2
hlna.py
2
hlna.py
@ -197,7 +197,7 @@ def print_line(*text, flag="", sep=" ", end="\n"):
|
|||||||
color = colorama.Fore.CYAN
|
color = colorama.Fore.CYAN
|
||||||
else:
|
else:
|
||||||
color = colorama.Fore.WHITE
|
color = colorama.Fore.WHITE
|
||||||
len_text = len(text)
|
len_text = len(*text)
|
||||||
print(colorama.Fore.LIGHTGREEN_EX + "." * len_text)
|
print(colorama.Fore.LIGHTGREEN_EX + "." * len_text)
|
||||||
print(color, *text, sep=sep, end=end)
|
print(color, *text, sep=sep, end=end)
|
||||||
print(colorama.Fore.LIGHTGREEN_EX + "." * len_text + colorama.Style.RESET_ALL)
|
print(colorama.Fore.LIGHTGREEN_EX + "." * len_text + colorama.Style.RESET_ALL)
|
||||||
|
Loading…
Reference in New Issue
Block a user