LECT 3 Python
LECT 3 Python
• In Python 2
print “Hello Bhopal”
• In Python 3
print(“Hello Bhopal”)
• In Python 2
5/2 2
5/2.02.5
• In Python 3
5/2 2.5
1. Without any IDE , i.e. by simply using notepad for writing the code
and running it on command prompt
Initially we will learn and practice Python programs without any IDE and later
on we will use PYCHARM.
We can download everything we need to get started with Python from
the Python website called http://www.python.org/downloads.
But if you have windows 64 bit then scroll down and select
python 3.6.5 from the list
Downloading And
Installing Python
Open the downloads folder and run the file python-3.6.5.exe (if you
are on 32 bit) or python-3.6.5-amd64 (if you are on 64bit) by right
clicking it and selecting run as administrator
Downloading And
Installing Python