def create_list(self, get_input=True):
self.screen.clear()
self.height, self.width = self.screen.getmaxyx()
self.screen.addstr(self.title.center(self.width),
curses.color_pair(1) | curses.A_BOLD)
self.screen.addstr(self.comment.center(self.width))
self.draw_items()
if not get_input:
return None
return self.screen.getch()
评论列表
文章目录