A general educational tool with Python console and script feature.
About Handy Py
Handy Py is an education app developed by Quan Lin.
Download Statistics
Handy Py has been downloaded 9 times. In the last 30 days, the app was downloaded 0 times.
User Ratings
The app has no ratings yet.
App Information
Handy Py costs $0.99 to download. The APK download size is 31.45 MB. The latest version available is 0.3. The last update was on August 1, 2021.
Technical Requirements
The app has a content rating of Everyone. The app has been available on Google Play August 2021.
Description
A general educational tool with Python console and script feature. ======================================================
Features --------------
* Offline Python 3.8 console that does NOT need internet connection.
* Apart from standard Python libraries, some useful and educational libraries such as numpy, sympy, requests, pillow, peewee are pre-installed.
* Custom script can be loaded and run easily. There are also some examples for quick start. Just copy and paste one of them to try it out.
Script General Guide ---------------------------------
* This app is not designed as script editor although script can be edited in the script field. The best way is to use your favourite script editor and then copy and paste the script.
* Always use spaces for indentation to avoid weird errors.
* Most of the packages in standard Python library are available to import.
* Do not run console code and script code at the same time. They share the same stdout.
* If while loop is needed, always use `app.running_script` as condition in order to stop the script properly.
* Use `app.version` to get the app version string.
* Use `app.clear_output()` to clear the script output field.
* Use `app.log_file(text)` to save a log file in storage. The log file is located here [Storage Directory]/{_log_folder_name}/log_[UTC Timestamp].txt. text (str): Text Content return (str): Full File Path
Here is one script example from this app: #################### # Sympy example.
from sympy import symbols, solve
x, y = symbols('x, y') solution = solve( [ x + y - 10, x - y - 2, ], [x, y], )
print(solution)
# Output: {x: 6, y: 4}
####################
Recent changes: UI improved. Python tutorial added. More examples added.
Get a detailed PDF report for Handy Py with download trends, rating history,
and key performance statistics — useful for competitive research or tracking your own app.
Learn more
Are you the developer of this app? Join us for free to see more information about your app and learn how we can help you promote and earn money with your app.
Each subscription will automatically renew 3 days before the expiration date for
the same time period. Subscriptions can be cancelled at any time before the renewal.