How to use libraries with the "python" module

I’ve created a small python script to do some calculations and want to use it with the “python” module. However as I need the “math” library, I need to import it. Unfortunately this doesn’t work and I get the error message

import not found”

How can I use functions that are not build-in, but need an import?

1 Like

As far as I know you can’t arbitrarily import modules. Unfortunately you can only use what’s available.