I have one program on the /Desktop called hello.py
def pri():
print "hello"
Then I have another program on the /Desktop called run.py
from hello.py import pri
pri()
It gives me error that no module exist.
How can I successfully import methods from other python programs in the same directory.