Python Programming 101
Python Programming 101
3 days
Format:
Lectures
Hands-on exercises
Handout
INTRODUCING PROGRAMMING
What is Programming?
Wash
Rinse
Repeat
Do you notice the problem with the
instruction?
COMPUTER PROGRAMMING
WHAT IS PYTHON?
An Overview
Batteries included
Desktop applications/games
Web-based applications
CERN, NASA
In Malaysia:
You!
Download from www.python.org
INTRODUCING IDLE
STORING VALUE
Examples:
>>> var = 2
>>> var
2
>>> a = 1
>>> var + a
3
>>> result = var + a
>>> result
3
DATATYPES: NUMBERS
Integers
>>> a = 2
>>> type(a)
<class 'int'>
>>>
Floats
>>> b = 2.5
>>> type(b)
<class 'float'>
>>>
Fractions
Complex numbers
+
*
/
%
Addition
Substraction
Multiplication
Division
Modulus (calculate remainder)
>
>=
<
<=
Greater than
Greater than or equal to
Lesser than
Lesser than or equal to
PRIMITIVE
DATATYPES
DATATYPES: STRINGS
DATATYPES: STRINGS
Concatenate
>>> a = 'my '
>>> a + 'string'
'my string'
>>>
Repeat
>>> b = 'ha '
>>> b * 3
'ha ha ha '
>>>
Long string
>>> mystr = ('put in bracket '
'to handle long string')
>>> mystr
'put in bracket to handle '
DATATYPES: STRING
DATATYPE: STRINGS
BASIC
DATA STRUCTURE
CONTROL
FLOWS
CONTROL FLOW: IF
if n % x == 0:
break
else:
Another example:
>>> for i in range(2, 10):
if i % 2 == 0:
continue
print(i, ' is an odd number') # Python 3
print i, ' is an odd number' # Python 2
continue keyword means continues with next iteration
FUNCTIONS
WHAT IS A FUNCTION?
A named section of a
program that performs
specific task
Allow to organize code block
which repeatedly used into a
reusable procedure or
routine
Python comes with a lot of
built-in functions which we
already seen some of them
FUNCTION: DEFINING
print a,
# Py2
a, b = b, a+b
print()
# Py3
>>> fib(2000)
>>> i = 5
>>> myfunc()
>>> myfunc('test2', 1, 2, 3)
>>> myfunc('test3', 1, 2, arg3='hello', arg4='world')
FUNCTION: ANONYMOUS
>>> is_even(0)
>>> is_even(1)
>>> is_even(2)
>>>
Typically used when you need a function object
OBJECT ORIENTED
PROGRAMMING (OOP)
OOP: INTRODUCTION
Example:
>>> a = 1
>>> type(a)
self.say = say
def shout(self):
print(self.say)
self.x, self.y = x, y
def __add__(self, pt):
OOP: INHERITANCE
self.numtyre = num
self.color = c
Example (cont):
>>> class Car(Tyre):
def __init__(self):
super(Car,
self).__init__()
>>> a = Car()
>>> a.numtyre
Show multiple inheritance
quirks
Syntax error
Exceptions
EXCEPTION HANDLING
>>>
Another example:
>>> try:
z/0
except (NameError, ZeroDivisionError) as e:
print(Error: {0}.format(e.args[0]))
except:
print('some other error')
RAISING EXCEPTION
MODULES
MODULE: INTRODUCTION
MODULE: EXAMPLE
MODULE: PACKAGE
BATTERIES INCLUDED
BATTERIES INCLUDED
BUILT-IN FUNCTIONS
enumerate([seq, start=0])
raw_input([prompt])
len(s)
open(name[, mode])
set([iterable])
STANDARD LIBRARIES
sys
os
time
datetime
math
decimal
logging
INTRODUCTORY COURSE TO
PRACTICAL PYTHON PROGRAMMING
Instructor: E A Faisal
3 days
Format:
Instructor: E A Faisal
Lectures
Hands-on exercises
Handout
INTRODUCING PROGRAMMING
What is Programming?
Instructor: E A Faisal
Wash
Rinse
Repeat
Do you notice the problem with the
instruction?
Instructor: E A Faisal
COMPUTER PROGRAMMING
Instructor: E A Faisal
WHAT IS PYTHON?
An Overview
Instructor: E A Faisal
Instructor: E A Faisal
Instructor: E A Faisal
Batteries included
Desktop applications/games
Web-based applications
Instructor: E A Faisal
CERN, NASA
In Malaysia:
You!
Download from www.python.org
Show demo:
1. Game
2. Facial recognition
Instructor: E A Faisal
10
INTRODUCING IDLE
Instructor: E A Faisal
11
Instructor: E A Faisal
12
STORING VALUE
Instructor: E A Faisal
Examples:
>>> var = 2
>>> var
2
>>> a = 1
>>> var + a
3
>>> result = var + a
>>> result
3
13
DATATYPES: NUMBERS
Integers
>>> a = 2
>>> type(a)
<class 'int'>
>>>
Instructor: E A Faisal
Floats
>>> b = 2.5
>>> type(b)
<class 'float'>
>>>
Fractions
Complex numbers
14
+
*
/
%
Instructor: E A Faisal
Addition
Substraction
Multiplication
Division
>
>=
<
<=
Greater than
Greater than or equal to
Lesser than
Lesser than or equal to
15
PRIMITIVE
DATATYPES
Instructor: E A Faisal
16
DATATYPES: STRINGS
Instructor: E A Faisal
17
DATATYPES: STRINGS
Instructor: E A Faisal
Concatenate
>>> a = 'my '
>>> a + 'string'
'my string'
>>>
Long string
>>> mystr = ('put in bracket '
'to handle long string')
>>> mystr
'put in bracket to handle '
Repeat
>>> b = 'ha '
>>> b * 3
'ha ha ha '
>>>
18
DATATYPES: STRING
Instructor: E A Faisal
19
DATATYPE: STRINGS
Instructor: E A Faisal
20
BASIC
DATA STRUCTURE
Instructor: E A Faisal
21
Instructor: E A Faisal
22
Instructor: E A Faisal
23
Instructor: E A Faisal
24
CONTROL
FLOWS
Instructor: E A Faisal
25
CONTROL FLOW: IF
Instructor: E A Faisal
26
Instructor: E A Faisal
if n % x == 0:
break
else:
27
Instructor: E A Faisal
Another example:
>>> for i in range(2, 10):
if i % 2 == 0:
continue
print(i, ' is an odd number') # Python 3
print i, ' is an odd number' # Python 2
continue keyword means continues with next iteration
28
Instructor: E A Faisal
29
FUNCTIONS
Instructor: E A Faisal
30
WHAT IS A FUNCTION?
Instructor: E A Faisal
A named section of a
program that performs
specific task
Allow to organize code block
which repeatedly used into a
reusable procedure or
routine
Python comes with a lot of
built-in functions which we
already seen some of them
31
FUNCTION: DEFINING
Instructor: E A Faisal
print a,
# Py2
a, b = b, a+b
print()
# Py3
>>> fib(2000)
32
Instructor: E A Faisal
>>> i = 5
33
Instructor: E A Faisal
34
Instructor: E A Faisal
>>> myfunc()
>>> myfunc('test2', 1, 2, 3)
>>> myfunc('test3', 1, 2, arg3='hello', arg4='world')
35
FUNCTION: ANONYMOUS
Instructor: E A Faisal
>>> is_even(0)
>>> is_even(1)
>>> is_even(2)
>>>
Typically used when you need a function object
36
OBJECT ORIENTED
PROGRAMMING (OOP)
Instructor: E A Faisal
37
OOP: INTRODUCTION
Instructor: E A Faisal
Example:
>>> a = 1
>>> type(a)
38
Instructor: E A Faisal
self.say = say
def shout(self):
print(self.say)
39
Instructor: E A Faisal
self.x, self.y = x, y
def __add__(self, pt):
40
OOP: INHERITANCE
Instructor: E A Faisal
self.numtyre = num
self.color = c
Example (cont):
>>> class Car(Tyre):
def __init__(self):
super(Car,
self).__init__()
>>> a = Car()
>>> a.numtyre
Show multiple inheritance
quirks
41
Instructor: E A Faisal
42
Instructor: E A Faisal
Syntax error
Exceptions
43
EXCEPTION HANDLING
Instructor: E A Faisal
>>>
44
Instructor: E A Faisal
Another example:
>>> try:
z/0
except (NameError, ZeroDivisionError) as e:
print(Error: {0}.format(e.args[0]))
except:
print('some other error')
45
RAISING EXCEPTION
Instructor: E A Faisal
46
MODULES
Instructor: E A Faisal
47
MODULE: INTRODUCTION
Instructor: E A Faisal
48
MODULE: EXAMPLE
Instructor: E A Faisal
49
MODULE: PACKAGE
Instructor: E A Faisal
50
BATTERIES INCLUDED
Instructor: E A Faisal
51
BATTERIES INCLUDED
Instructor: E A Faisal
52
BUILT-IN FUNCTIONS
Instructor: E A Faisal
enumerate([seq, start=0])
raw_input([prompt])
len(s)
open(name[, mode])
set([iterable])
53
STANDARD LIBRARIES
Instructor: E A Faisal
sys
os
time
datetime
math
decimal
logging
54