-1

I am trying to enlarge the size of output code. Currently I am working on vs code on window. I am a quite beginner. I also want some advance functionality on my source code.

CODE:

I want to print a table of 1 to 100 counting as presentable as I can.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

OUTPUT:

Here is the output of my code

please suggest some advance changes which can make it more presentable including how to enlarge the text and change its style.

Little Help

Harsh Goyal
  • 11
  • 1
  • 2
  • 1
    The font size of a shell / terminal is configured in the shell / terminal and cannot be controlled by your program. – luk2302 Nov 20 '21 at 18:01
  • Please provide enough code so others can better understand or reproduce the problem. – Community Nov 24 '21 at 08:42

1 Answers1

0

I am afraid it's impossible, you only can modify the appearance of terminal. You can modify these configurations and so on which start with terminal.integrated. in the settings.json file:

  "terminal.integrated.fontFamily": "Courier New",
  "terminal.integrated.lineHeight": 5,
  "terminal.integrated.fontWeight": "100",
  "terminal.integrated.fontSize": 20,
  "terminal.integrated.fontWeightBold": "900"
Steven-MSFT
  • 7,438
  • 1
  • 5
  • 13