摘要: ``` python #!usr/bin/python #-*- coding:utf-8 -*- import random import curses s = curses.initscr() curses.curs_set(0) sh,sw = s.getmaxyx() w = curses.newwin(sh,sw,0,0) w.keypad(1) w.timeout(100) s... 阅读全文
posted @ 2017-10-14 17:00 xushukui 阅读(472) 评论(0) 推荐(0)