2/9/2026 Python Programming 1
Content
➢Computer Programming
➢Application (What can a computer program do)
➢Program, Programmer
➢How a computer program work
➢Programming language ( compiled language, Interpreted Langauge)
➢Pseudo Code
2/9/2026 Python Programming 2
Computer Programming
• Computer Programming
• Commanding computer on how to perform task(s)
• Process of converting computer problem into executable
program
• A computer Program
• A sequence of commands (or instructions) written to perform
specified task with a computer
2/9/2026 Python Programming 3
What can a computer program do?
• Mathematical calculation
• Automate process
• Making games
• Making movies
• Design robots/ drone
• Self-driven car
• Web application
• Many more..
2/9/2026 Python Programming 4
Programmer & Why we write program?
• Programmer
• A person who creates series of logical instructions which control computers to perform a
desired task
• Why we write program?
• To let the machine do our jobs because it is faster, accurate, reliable, extensible and
cheap
2/9/2026 Python Programming 5
How a computer program
works
2/9/2026 Python Programming 6
Programming Languages
• Programming Languages
• A non-spoken languages designed to communicate instruction to a machine
• Example C, C++, PHP, Python, Java, [Link]
• Source Code
• Collection of computer instructions written using some human readable computer
programming languages
2/9/2026 Python Programming 7
Programming Languages
• Compiled language
• Need compiler to translate the source code into some intermediate form
• Example C, C++
• Interpreted language
• Execute instruction directly without previously compiling
• Example PHP, Python
2/9/2026 Python Programming 8
Pseudo code
• Not Programming Language
• Write using any spoken language
• To communicate with each other
• To understand problem in high level form
• Example
Ask email address from user
IF user provide correct email address format
THEN say correct
ELSE
Say incorrect
2/9/2026 Python Programming 9
[Link]
Download and Installation
• Go to the link [Link]
• Download and install appropriate version for your computer
Choose your OS if not Windows, then download
Installation File is downloaded
• Double click on the file to install python
Check Add Python 3.9 to PATH
Then, Click on Install Now
1
Installing ……..
Click Close
You will see Python is
in your Program list
now
• Click on IDLE ( Python 3.12 64 bit)
Ready to Rock!!!!
• No variable declaration
• No semicolon
• Interactive
• Easy
Online Python Compiler (Interpreter) – No
installation is needed
• [Link]
Click here to run your code
Your Code
The Result