2000字范文,分享全网优秀范文,学习好帮手!
2000字范文 > python字体加粗代码 我怎样才能使文字在Python中加粗?

python字体加粗代码 我怎样才能使文字在Python中加粗?

时间:2022-09-10 06:36:47

相关推荐

python字体加粗代码 我怎样才能使文字在Python中加粗?

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.

class style:

BOLD = '\033[1m'

END = '\033[0m'

Then print them via concatenated class calls:

print style.BOLD + 'This is my text string.' + style.END

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!

print '\033[1m' + 'This is my text string.' + '\033[0m'

Does this answer your question?

Edit: JYelton beat me to it. I'm such a slow typer...

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。