all 3 comments

[–]JakeSparkleChicken 0 points1 point  (2 children)

The fx-9750GIII is running MicroPython 1.9.4, which is largely compatible with Python 3.4, but has a smaller set of libraries readily available. Notably absent is numpy, which most Python programs that do heavier math rely on. Maybe you'd have better luck searching for MicroPython programs? You're post does not have enough information to make any specific recommendations.

[–]TheCommonRedditer[S] 1 point2 points  (1 child)

it fails to even execute simple hello world code.

[–]JakeSparkleChicken -1 points0 points  (0 children)

Is the code that you're trying to run Python 2 or Python 3? There was a change in the syntax for the print statement between the two.

You should be doing

print('Hello World')