- “Python” is another Interpreted language.
- Python is fast development environment.It has open license for use.
- It provides high productivity and low maintenance cost.
- Python can be downloaded from link:-
http://www.python.org/download/
- Update the python plugin in Eclipse.
- Configure the Python Interpreter in Windows > Preferences by creating new variable,
- After configuring PYTHONPATH this will look like,
- Create a new Python Project “PythonDemoProject” in Eclipse,
- Create a new Python module “python-demo.py“,
'''
Created on Apr 8, 2013
@author: Sandeep Kumar Patel
'''
print 'Hello, This is First Python Program'
- Python Module project in screenshot,
- Python Module run in Eclipse options are,
- Output of the python program,
Hello, This is First python Program