Python on android with interacting console | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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.

15th Dec 2017, 11:13 PM
Nicolas Poulain
Nicolas Poulain - avatar
5 Answers
+ 6
Sorry, but do anyone know any for Javascript?? Nicolas, hope you aren't angry?? I could delete the comment😶
16th Dec 2017, 1:56 AM
Justine Ogaraku
Justine Ogaraku - avatar
15th Dec 2017, 11:47 PM
David Ashton
David Ashton - avatar
+ 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.
16th Dec 2017, 12:55 AM
Kirk Schafer
Kirk Schafer - avatar
+ 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.
16th Dec 2017, 1:07 AM
Kirk Schafer
Kirk Schafer - avatar
+ 3
Have you tried Pydroid 3?
15th Dec 2017, 11:23 PM
blackcat1111
blackcat1111 - avatar