Computer Programming
Dr. Hilal ARSLAN
Week 2: Introduction to Python
H. Arslan Computer Programming Week 2: Introduction to Python 1 / 18
Outline
Introduction to Python
• Variables and assignments
• Input and Output functions
• Operators and Expressions
H. Arslan Computer Programming Week 2: Introduction to Python 2 / 18
python
- Command Line
H. Arslan Computer Programming Week 2: Introduction to Python 3 / 18
Basic Data
Numbers
• Integers
• Floating points
• Booleans (True or False)
H. Arslan Computer Programming Week 2: Introduction to Python 4 / 18
Expressions
• A sequence of operands and operators, like a + b - 5 , is called an
expression.
H. Arslan Computer Programming Week 2: Introduction to Python 5 / 18
Variables
• Python has no command for declaring a variable
• A variable is created the moment you first assign a value to it
• Variables do not need to be declared with any particular type, and can
even change type after they have been set
H. Arslan Computer Programming Week 2: Introduction to Python 6 / 18
Variables
H. Arslan Computer Programming Week 2: Introduction to Python 7 / 18
Variables
• There are certain rules for defining variable name.
• Special symbols are not used in the first letter of the variable.
• Variable names do not start with a digit.
• Variable names are case sensitive.
H. Arslan Computer Programming Week 2: Introduction to Python 8 / 18
Visualize: [Link]
H. Arslan Computer Programming Week 2: Introduction to Python 9 / 18
Strings
• String variables can be declared either by using single or double quotes
H. Arslan Computer Programming Week 2: Introduction to Python 10 / 18
Operators
H. Arslan Computer Programming Week 2: Introduction to Python 11 / 18
Example: Operators
H. Arslan Computer Programming Week 2: Introduction to Python 12 / 18
Assignment Operators
H. Arslan Computer Programming Week 2: Introduction to Python 13 / 18
Example
H. Arslan Computer Programming Week 2: Introduction to Python 14 / 18
Operators
H. Arslan Computer Programming Week 2: Introduction to Python 15 / 18
Example
H. Arslan Computer Programming Week 2: Introduction to Python 16 / 18
Example