python import urwid text = urwid.Text("Hello, urwid!") fill = urwid.Filler(text, 'middle') loop = urwid.MainLoop(fill) loop.run()