Language Fundamentals
Language Fundamentals
Programming
History Of Python
• Python is a fairly old language created by Guido Van
Rossum.
• The name "Python" was adopted from the same series "Monty
Python's Flying Circus".
Release Dates of Different Versions
VERSIONS RELEASE DATES
Python 1.0 (first standard
Jan 1994
release)
Sep 5, 2000
Python 1.6 (Last minor version)
Python 2.0 (Introduced list
Oct 16,2000
comprehensions) Python 2.7
July 3, 2010
(Last minor version)
Python 3.0 (Emphasis on
removing duplicative constructs Dec 3, 2008
and module) Sep 13, 2015
Python 3.5 (Last updated version)
Features of Python Programming
• A simple language which is easier to learn
• Free and open-source
• Portability
• Extensible and Embeddable
• A high-level, interpreted language
• Large standard libraries to solve common tasks
• Object-oriented
Applications
• Web Applications
• Scientific and Numeric Computing
• Creating software Prototypes
• Good Language to Teach Programming
Install and Run Python In Windows
1. Go to Download Python page on the official site and click Download
Python 3.6.0 (You may see different version name).
2. When the download is completed, double-click the file and follow the
instructions to install it. When Python is installed, a program called IDLE is
also installed along with it. It provides graphical user interface to work with
Python.
3. Open IDLE, copy the following code below and press enter.
print ("Hello, World!")
Install and Run Python In Windows
5. To create a file in IDLE, go to File > New Window (Shortcut: Ctrl+N).
6. Write Python code (you can copy the code below for now) and save
(Shortcut: Ctrl+S) with .py file extension like: hello.py or your-
firstprogram.py
print ("Hello, World!")
7. Go to Run > Run module (Shortcut: F5) and you can see the output.
Congratulations, you've successfully run your first Python program.
Output:
Hello, World!