+ 2
Python on android with interacting console
Hi there, does anyone know a good Android Python3 App on which it is possible edit, run a script and then interact with the console. It is possible with pythonista on iOS but I'm still looking for that feature on Android. Qpython3 doesn't give hand after running a script you just can close the console.
5 odpowiedzi
+ 6
Sorry, but do anyone know any for Javascript?? Nicolas, hope you aren't angry?? I could delete the comment😶
+ 4
I like QPython3
https://play.google.com/store/apps/details?id=org.qpython.qpy
+ 4
Ctrl-C (the standard keystroke to stop script execution) allows you to access the shell.
You can figure out where the commands live easily enough.
To return to QPython:
* type 'exit' (standard for terminals)
* press Ctrl-D (ASCII 4 : End of Transmission)
Not so incidentally, Ctrl-D is given as an alternative to exit() in Python's help() system.
Also:
Hacker's Keyboard provides a full software keyboard for Android, sending real scan codes compatible with real terminals.
+ 4
Alternatively, Termux is a Linux multi-terminal app with lots of standard pkgs ... after install + update, 'pkg install python'.
You don't get the nice GUI of QPython; I just use a standalone editor and task switch.
+ 3
Have you tried Pydroid 3?