Numworks: Python Graphics - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: Not HP Calculators (/forum-7.html) +--- Forum: Not remotely HP Calculators (/forum-9.html) +--- Thread: Numworks: Python Graphics (/thread-15277.html) |
Numworks: Python Graphics - Eddie W. Shore - 06-28-2020 04:10 PM Numworks Python Scripts: Basic Graphics Script: atari.py Draws the basic-eight color palette of the classic 1977 Atari 2600. Code: from math import * Script: firstdigit.py The tenths digit from n random numbers is extracted and a bar chart is generated based on the results. I recommend a sample size of at least 20. Code: from math import * Script: colorfulrings.py The script cycles through a set of nine colors, four times. The Kandinsky module is used to generate the flowery circles as well as cycle through the colors. This module works with integer pixels. Code: from math import * Script: modulusplot.py Generate a pixel plot of the equation (x^n + y^n) mod m Code: from math import * Blog link: http://edspi31415.blogspot.com/2020/06/numworks-python-scripts-basic-graphics.html RE: Numworks: Python Graphics - compsystems - 07-02-2020 03:22 AM Hi eddie Texas Instruments and Numworks bet on Python as a computational language to teach and learn algorithmic logic. In the TIplanet forum I see a great document of examples in Python, running on the TI83-PREMIUM-CE calculator. Frn doc: https://education.ti.com/html/fr/livretT3maths/index.html I ask you if the Numworks and TI83 calculators have simulation or PC software and if Python programs can be sent to these "simulators" Thanks |