2 odpowiedzi
+ 1
kriny You can import ONLY modules installed on SL server (then not custom modules)
0
Use this..I'm importing the math module as an example.
-import math
-from math import sqrt
The first line imports all functions in the math module.
The second line imports only sqrt from the math module..
You should try it in the playground or complete the python tutorial,its covered in there