SyntaxFix
Write A Post
Hire A Developer
Questions
This depends if you're using linux/unix:
>>> start = "\033[1m" >>> end = "\033[0;0m" >>> print "The" + start + "text" + end + " is bold." The text is bold.
The word text should be bold.
text