Discoveries in Python Libraries - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html) +--- Forum: HP Prime (/forum-5.html) +--- Thread: Discoveries in Python Libraries (/thread-19024.html) |
Discoveries in Python Libraries - Ioncubekh - 10-25-2022 08:54 PM Here I will discuss findings about python libraries & stuff Python <> HPPL variables https://www.hpmuseum.org/forum/thread-18996.html For matplotl https://www.hpmuseum.org/forum/thread-18992.html For linalg https://www.hpmuseum.org/forum/thread-16897.html Creating / saving / accessing files via python program (Python APP is active) File created below is listed in CAS using AFiles(); but contents not accessed via AFiles("dict.txt") Code:
Accessing / Reading files is OK from python. Weird thing is that file once read is automatically closed? Once you have issued readlines(), the 2nd time you do it no data is returned. File should remain open till .close() Code:
Regarding CAS in python; xcas seems working. As expected it accepts a valid string because the following operation yield proper results even without importing math or cmath libraries for cos() sin() Code:
RE: Discoveries in Python Libraries - Ioncubekh - 10-26-2022 03:29 AM Regarding print() - fstring print not implemented https://realpython.com/python-f-strings/ - \t doesn't work Alternative use chr() with space (ANSI code is 32) Code: tab=4*chr(32) RE: Discoveries in Python Libraries - Ioncubekh - 11-02-2022 03:36 AM Cannot find information regarding timing the execution of python scripts. The help file states utimeq library has this function but don't know how to use it. Some information here: https://micropython-lego-ri5.readthedocs.io/en/latest/library/utimeq.html#utimeq.utimeq.peektime Alternative easy stuff: Code:
|