python from asciimatics.screen import Screen def demo(screen): screen.print_at('Hello, World!', 0, 0) screen.refresh() screen.wait_for_input() Screen.wrapper(demo)