This question already has an answer here:
- How do I print bold text in Python? 10 answers
I want to be able to change the text to bold in Python. Is there a way to do that?
I have been able to change colors with termcolor but nothing so far with bold text. Has anyone tried doing it before?
You might want to try ANSI escape sequences if your platform allows it.
Crossposting from related - and possible duplicate - SO questions: 1 2
Before you proceed, please read the warnings in the above links to make sure your operating system and Python version will allow you to properly render this.
You can define a class containing all of the ANSI escape sequences you need.
Then
print
them via concatenated class calls:If you don't want to go through the hassle of creating an entire class just to get bold text, you can obviously concatenate them directly instead. However, if your code is open-source and not for personal use, make sure you tell other potential readers what this does!
Does this answer your question?
Edit: JYelton beat me to it. I'm such a slow typer...