This is my first question on here.
I'm trying to learn more about how to produce ANSI art in the linux terminal using Python.
I want to be able to locate a specific pixel in the terminal and change it's colour. For example if my terminal screen size is set at (120 columns x 40 rows) how could I locate the pixel at (60 x 20) so I would be able to update its value for example?
At the moment all I can think of is:
WHITE = '\033[47m'
print(" " * 60 + WHITE)
This will print a white block to the terminal on column 60 but row 1 not row 20. I'd like it to print a white block to the terminal on column 60 row 20.
Please could you point me in the right direction?