We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I have been coding with pystyle for the past day and have found that using the center and colors functions of the module do not work together
This is the snippet of code
print(Center.XCenter(Colorate.Horizontal(Colors.red_to_purple, "\n\n" + head, 1)))
head is the banner i am trying to print
The text was updated successfully, but these errors were encountered:
This works for me
print(Colorate.Horizontal(Colors.red_to_purple, Center.XCenter("\n\n") + head, 1))
Sorry, something went wrong.
print(Colorate.Horizontal(Colors.red_to_purple, Center.XCenter(f"Your text or {varible}") , 1))
No branches or pull requests
Hello,
I have been coding with pystyle for the past day and have found that using the center and colors functions of the module do not work together
This is the snippet of code
print(Center.XCenter(Colorate.Horizontal(Colors.red_to_purple, "\n\n" + head, 1)))
head is the banner i am trying to print
The text was updated successfully, but these errors were encountered: