是否存在任何可以改变输出大小和样式的python内置模块?
Posted
技术标签:
【中文标题】是否存在任何可以改变输出大小和样式的python内置模块?【英文标题】:Is there any python inbuilt module exist which can vary the output size and style? 【发布时间】:2021-12-31 00:47:26 【问题描述】:我正在尝试放大输出代码的大小。目前我正在处理窗口上的 vs 代码。我是一个相当初学者。我还想在我的源代码上添加一些高级功能。
代码:
我想打印一张从 1 到 100 的表格,尽可能美观。Here is the source code ,Here I use termcolor to bold and color text. And board is simply a list of 1 to 100 number
输出:
Here is the output of my code
请提出一些可以使其更美观的改进建议,包括如何放大文本和更改其样式。
小帮助
【问题讨论】:
shell/终端的字体大小是在shell/终端中配置的,不能被你的程序控制。 请提供足够的代码,以便其他人更好地理解或重现问题。 【参考方案1】:恐怕不可能,只能修改终端的外观。您可以在settings.json文件中修改这些以terminal.integrated.
开头的配置等:
"terminal.integrated.fontFamily": "Courier New",
"terminal.integrated.lineHeight": 5,
"terminal.integrated.fontWeight": "100",
"terminal.integrated.fontSize": 20,
"terminal.integrated.fontWeightBold": "900"
【讨论】:
以上是关于是否存在任何可以改变输出大小和样式的python内置模块?的主要内容,如果未能解决你的问题,请参考以下文章