You are browsing as a guest. Sign up (or log in) to start making projects!

1h 29m 58s logged

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.

0
18

Comments 1

@kennator

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)