Introduction to Python
Python is a general purpose programming language.
How to run Python and basic set up details in machines having windows operating system:-
- Install Anaconda on window machines
- Run Jupyter Notebook command in Anaconda command prompt
- Install Spyder via Anaconda Console
- Install Latest Python version (as of now Python 3)
Either use Jupyter notebook or Spyder IDE for writing your python programs.
As of now Pycharm is most popular but Spyder is also good enough and equivalent for writing python code.
In every language developers start by writing hello world program and nothing easier than writing it in Python.
First Hello World Program in Python:
print ("Hello World")
Output : Hello World
Viola First Program is done!!
Comments
Post a Comment