I am trying to run following code in a python script
from java.lang import System
and get following error
Traceback (most recent call last):
File "./myscript.py", line 3, in <module>
from java.lang import System
Is this statement ok/allowed? The python version is 2.6.6.
Currently I have python and java working fine. Any pointers will be greatly appreciated. I think I am missing a step here- not sure?