Are there Python modules that allow a program to write to the screen?

Chris Angelico rosuav at gmail.com
Mon Apr 26 03:38:59 EDT 2021


On Mon, Apr 26, 2021 at 4:40 PM Stephen Tucker <stephen_tucker at sil.org> wrote:
>
> Hi,
>
> I have old software written in GWBASIC that I use to plot diagrams on the
> screen.
>
> In Windows 10, I have to resort to using the DOSBox emulator to run it.
>

"The screen" isn't really a viable target in a modern world, so it
depends heavily on what you're trying to do. Plotting diagrams sounds
like you might want matplotlib?

> I would dearly like to re-write it in Python - ideally Python 2.7.
>
> What, if anything, is available?
>

Try Python 3 instead - don't go for something that's already reached
the end of its life.

There are quite a few libraries available, but my first guess would be
matplotlib; and if you want something really fancy, manim can do
incredible things.

ChrisA


More information about the Python-list mailing list