Skip to content

Instantly share code, notes, and snippets.

View orangeSi's full-sized avatar

myth orangeSi

  • Reforgene
  • China,GuangZhou
View GitHub Profile
@orangeSi
orangeSi / pycurses.py
Created May 29, 2018 09:10 — forked from claymcleod/pycurses.py
Python curses example
import sys,os
import curses
def draw_menu(stdscr):
k = 0
cursor_x = 0
cursor_y = 0
# Clear and refresh the screen for a blank canvas
stdscr.clear()