Hi all. Using pythonista on iOS. I want to help my daughter to make a super simple program to quiz her on multiplication tables. Since she's just learning python, this will be the bare bones, 15 or 20 line python script.
BUT, I realize that when we run the app, the input() command will cause the iPad to invoke the normal Pythonista keyboard. And in our app, when a user enters the answers to the questions, the user is asked to only enter numbers. they would pretty much be typing: 64
... But that standard iPad keyboard has the numerals positioned where you must press an additional key to switch to access the actual numbers. Ug. In practice, that means the user would have to type that extra "switch to numerals" each and every time they go to type in the next answer.
Is there a way I can fairly simply tell python/pythonista to invoke a keyboard that has numerals already pressable without pressing the additional key? But ideally not adding a large extra chunk of code to the app to totally build a GUI?
Whatever your simplest recommendation is, would be appreciated! even if it's a non-code suggestion like some third party keyboard I could download to the iPad :)
[[embarrassed that just the other day a similar question was posted. At the link here (but his is different in that he is building a GUI I believe.): https://forum.omz-software.com/topic/4930/use-the-numeric-keyboard-easily ]]