import curses def curses_main(cwnd): curses.use_default_colors() cwnd.addstr("one\n") cwnd.chgat(0, 0, -1, curses.A_BOLD) cwnd.getch() curses.wrapper(curses_main)