
Handy Py Free
Một công cụ giáo dục chung với tính năng Python Console và Script.
Thông Tin Ứng Dụng
Mô Tả Ứng Dụng
Phân Tích Và Đánh Giá Ứng Dụng Android: Handy Py Free, Được Phát Triển Bởi Quan Lin. Được Liệt Kê Trong Danh Mục Giáo Dục. Phiên Bản Hiện Tại Là 0.3, Được Cập Nhật Vào Ngày 01/08/2021 . Theo Đánh Giá Của Người Dùng Trên Google Play: Handy Py Free. Đạt Được Hơn 1 Ngàn Cài Đặt. Handy Py Free Hiện Có Đánh Giá 1, Xếp Hạng Trung Bình 5.0 Sao
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}
####################
Chúng Tôi Hiện Đang Cung Cấp Phiên Bản 0.3. Đây Là Phiên Bản Mới Nhất, Được Tối Ưu Hóa Nhất Của Chúng Tôi. Nó Phù Hợp Cho Nhiều Thiết Bị Khác Nhau. Tải Xuống Miễn Phí Apk Trực Tiếp Từ Cửa Hàng Google Play Hoặc Các Phiên Bản Khác Mà Chúng Tôi Lưu Trữ. Hơn Nữa, Bạn Có Thể Tải Xuống Mà Không Cần Đăng Ký Và Không Cần Đăng Nhập.
Chúng Tôi Có Nhiều Thiết Bị Có Sẵn 2000+ Cho Samsung, Xiaomi, Huawei, Oppo, Vivo, Motorola, LG, Google, OnePlus, Sony, Tablet ... Với Rất Nhiều Tùy Chọn, Bạn Dễ Dàng Chọn Các Trò Chơi Hoặc Phần Mềm Phù Hợp Với Thiết Bị Của Bạn.
Nó Có Thể Có Ích Nếu Có Bất Kỳ Hạn Chế Quốc Gia Hoặc Bất Kỳ Hạn Chế Nào Từ Phía Thiết Bị Của Bạn Trên Google App Store.
Những Gì Mới
UI improved.
Python tutorial added.
More examples added.
Python tutorial added.
More examples added.