Basic Python Introduction
Basic Python Introduction
Python Programming
Dr. Senthilkumar K
Information Security
SCOPE
Intro to Python
• Developed by Gudio Van Rossum
• Open source
• It is an interpreted
• Object-oriented
• High level programming language.
1
14-09-2021
Internet source
Python Tools
2
14-09-2021
Reference Books
• Martic C Brown, Python: The Complete Reference, 4th Edition,
McGraw Hill Publishers, 2018.
• John V. Guttag, Introduction to computation and programming using
python: with applications to understanding data. 2nd Edition, MIT
Press, 2016.
Additional Reference:
• Let Us Python -(Yashavant Kanetkar, Aditya Kanetkar )
3
14-09-2021
4
14-09-2021
Working on Python
• Interactive Mode
Interactive mode, a quick way of running blocks or a
single line of Python code. The code executes via the
Python shell, which comes with Python installation.
• Script Mode
Script Mode, is used when the user is working with
more than one single code or a block of code.
5
14-09-2021
Interactive Mode
6
14-09-2021