How Do I Create An Interactive Selection?
I want to create an 'interactive selection' in Python (not sure if I worded that correctly, look at the example below) that lets users press their up and down keys to choose an opt
Solution 1:
You are very limited with these kind of things on Windows. Libraries you may want to look in to are wcurses, PDCurses and Wconsio. Please note I used neither of these libraries myself. You also might be better off designing a GUI with a IDE like Boa Constructor that looks like a terminal, but no doubt that's considerably more difficult.
Post a Comment for "How Do I Create An Interactive Selection?"