colorful:Python中正确的终端字符串样式 源码
多彩的 在Python中正确完成了终端字符串样式 :party_popper: 这是一个挑逗 import colorful as cf # create a colored string using clever method translation print ( cf . bold_white ( 'Hello World' )) # create a colored string using `str.format()` print ( '{c.bold}{c.lightCoral_on_white}Hello World{c.reset}' . format ( c = cf )
用户评论