def ignore_error_add_str(win, y, x, s, attr=curses.A_NORMAL): """???????????????????????????????????????""" try: win.addstr(y, x, s, attr) except curses.error: pass