I’ve got the basics sorted, a laid out plan and have started the menu. My main highlight so far has been getting the file checking working, so it greets the user by it’s name if they have it stored in the user data file and otherwise it catches it rather than crashing on FileNotFoundError.
Comments 1
Oh use curses lib. do def stdscr (): then use key = stdscr.getkey() Important notes is that you want to do keyboard(True) and
try :
key = stdscr.getkey()
except curses.error:
key = None( or null so kode does not die)
Sign in to join the conversation.