Source code for ludema.screen

import os

[docs]class Screen: def __init__(self, *screen_print_functions): self.screen_print_functions = screen_print_functions
[docs] def show(self, clear_after=True): if clear_after: self.clear() for function in self.screen_print_functions: function()
[docs] def clear(self): try: os.system('clear') # for Linux/OS X except: os.system('cls') # for Windows