I've been googling and looking through StackOverflow but no luck...
What I would like is to display text to the screen (not console) for an art project I am developing. The string will be displayed in a full screen--edge to edge "window" with no menubar, etc. The string will update rapidly (imagine a string of random letters displaying and redrawing as fast as the computer will allow). Choice of font and color (on a letter-by-letter basis) would be great bonuses.
The string will be centered on the screen (not scrolling).
I'm new-ish to programming. Displaying text to the screen seems much more involved than I expected. :)
I've come across solutions using pygame but the sample code doesn't work. Here's a typical example:
https://www.daniweb.com/programming/software-development/code/244474/pygame-text-python
What I see on my Mac is a window opening with no text, with the code continuing to run, indefinitely. Similar experiences with other code and other libraries I've encountered.
Is pygame my best choice (ease of programming in Python, high speed) for my needs or are there other libraries better suited to what I am after?
If pygame is the right direction can anyone suggest sample code that will get me going?
Thanks,
--Darin