Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View Gim6626's full-sized avatar

Dmitrii Vinokurov Gim6626

  • Armenia
View GitHub Profile
@claymcleod
claymcleod / pycurses.py
Last active April 6, 2024 23:53
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()