A simple display that you can interface with python. The console module is not required and is used just for the example
Also, to go right add to x, to go up, add to y (I know, its annoying)
To initizize a screen, you need to use the screen class
myScreen = screen()
When initilizing a screen you have a few argumwnts that you can edit.
- screen width and height (tuple, required)
--- OR ---
- screen width (int, required)
- screen height (int, required)
(always 3rd argument)
- seporation character (string, optional)
- empty cell character (string, optional)
- new line character (string, optional)
- Data to screen (dictonary, optional)
- screen data (matrix, optional) (putting something in this argument will automatically display it)
I know this documentation sucks. Please help improvw my docs on this