Pyonic Python 3 interpreter for Android
Very useful offline Python IDE. But stop working when screen rotates. Should update built-in special keys like = [] <> {} (). While restarting interpreter, it takes time too long. Anyway thanks and appreciate your great work.
A very useful application!! No ads!! No restrictions!! Guesses small commands like input, print etc.!! Very effective for going from idea to script!! Thanks for this blessing Alexander Taylor!!!!!
Does it support numy
Better then others
Very good app. The only thing that lacks it's the possibility to execute a file with arguments, such as: program.py -h
I like this app very easy to use and quick. With indentation, auto complete and when I print the code I just need to click on the code again to copy and past it in my editor to modify it. The best python interpreter!
Working fine for me. Thanks!
It Abad app, it so not working even
Doesn't work
It's a very good application
Design looks very good! The ui is very user friendly. But it crashes a lot when typing using hacker keyboard (android 6 on nexus 6), does not work with google keyboard. Please keep debugging the app.
Developers: it doesn't work with stock Google keyboard. As soon as the first key is pressed a hard crash happens. Please, debug the app and fix it!
THIS IS GNU SOFTWARE <3. It has Python 3.6 with new syntax. A must have for experienced developers.
A bit rough round the edges. There is no option to save or load a python file. Settings aren't responsive (when opened, the settings window can scroll to the bottom only once). I'd also like to use "pip". With its current functionality, I can't think of what I'd use it for.
I don't understand, why raiting is so low. This has great potential.
Helpful to those of us studying Python. I read Python book on tablet and check the code with this handy app
The best opensource app for learning the kivy framework
I like this app! I am currently learning python, because of this app I can test what I have learned.
Best app
It starts up well but the line input buffer doesn't seem to work correctly. The first char from the previous input line stays in the buffer, but I can't see it or backspace over it. It seems to be related to the native ZenPad keyboard and word prediction. Seems OK with Gboard. ASUS ZenPad 10, Android 6. Thanks.
I love your app I have been working on it very much I am looking forward to playing it again
Text input does not work at all on Oreo and Pixel device (using Minuum keyboard). Couldn't write a single character.
it crashes as clipboard is accessed. There is no editor. its neither possible to paste anything from clipboard nor to load from file.
It crashes as soon as i open it can't even see what it looks like
Crashes on Launch, Samsung Galaxy S Relay, OS 4.2.1
This app is worthless
good app.but must increase csnvas size for typing program.
Really useful for quick writes and love the above screen inputs ????????
Best till now ... Keep it up.
????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
super
Qpython asks for all kinds of permisions for who knows what so i was verry happy to find thisone
The best python interpreter out there -- great for experimenting with new features when you are bored.
Keyboard actions do not work input mangeled
EDIT: It's been fixed.
by T####:
Recursion is not supported. The following code breaks with 'fib not defined' for n => 2. It returns 1 for lower values. def fib(n) : if n < 2: return 1 else: return fib(n-2)+fib(n-1) for n in range(10): print(fib(n)) Please don't tell me this is horrible code. I know. But it's a small snippet that reproduces the problem and I'm doing this on my phone :p