(no title)
Zuph
|
10 years ago
Processing power is only one part of the equation, though. These Cortex processors are significantly more constrained in RAM and storage than computers of 1995. Run Python on a 100MHz Pentium with 192 KiB of RAM, I'll be impressed.
bdarnell|10 years ago
bootload|10 years ago
- S60 https://en.wikipedia.org/wiki/Python_for_S60
- S60 http://www.onlamp.com/pub/a/python/2005/04/14/s60.html
- N73 https://rubayeet.wordpress.com/2009/01/30/installing-python-...
I never did see any real usage aside from one of the flickr devs using an N75 to upload/query flickr via Python.
pfalcon|10 years ago
For you reference, MicroPython can start up in as little as 2K of heap. Of course, one hardly can execute something more than a simple expression like "1+1" in that memory, but 2K also include memory required for interactive interpreter (and parsing into AST and compiling into bytecode).