I am very new to python programming and writing simple helloworld program by using python 3.3 on windows environoment.The helloworld program is saved as hello.py. So how can i
If you're trying to make your hello.py a module you need to create a file named __init.py__ in the hello.py folder.
hello.py
__init.py__
Take a look at the Python documentation here.