class MenuItem:
'Common base for all food items'
def __init__(self, name, price):
self.name = name
self.price = price
def displayMenuItem(self):
print ("Name: ", self.name, ", Price: ", self.price)
if __name__ == "__main__":
item1 = MenuItem("Rice",5)
item1.displayMenuItem()
try:
#You do your operations here
except ExceptionI:
#If there is ExceptionI, then execute this block
except ExceptionII:
#If there is ExceptionII, then execute this block
else:
#If there is no exception then execute this block
try:
fh = open("testfile", "w")
fh.write("this is my test file for exception handling")
except IOError:
print ("Error: can\'t find file or read data")
else:
print ("Written content in the file successfully")
fh.close()
try:
#You do your operations here
#If an exception occurs you skip remaining code
finally:
#This is always exectued
Write a script that sets a variable to any string. Next write a try-except block to convert the string to an integer using the int() function or print that "The argument does not contain numbers\n"
mylist = [expression(i) for i in old_list if filter(i)]
Basic Example
# You can either use loops:
squares = []
for x in range(10):
squares.append(x**2)
# Or you can use list comprehensions to get the same result:
squares2 = [x**2 for x in range(10)]
Nested Example
[x+y for x in [10,30,50] for y in [20,40,60]]
#[30, 50, 70, 50, 70, 90, 70, 90, 110]
Example using a filter (if)
[str(x) for x in range(9) if x%2 == 0]
#['0', '2', '4', '6', '8']
Objects are either mutable or immutable. An immutable object will not allow changes to it after it is created.Examples of immutable objects are
myStr = 'hello'
mystr[4] = 'O' #error!
x = 3
y = x
x = x + y
#What is the value of x? y?
del x
#What is the value of y now?
mystr1 = 'hello world'
mystr2 = mystr1
mystr1 = mystr1[:-1]
#What is the value of mystr1? mystr2?
del mystr1
#What is the value of mystr2 now?
list1 = ['water', 'juice', 'soda']
list2 = list1
list1.append('beer')
#What are list1 and list2 now?
del list1
#What are list1 and list2 now?
mytuple = ('a', 'b', 'c')
mytyple = 'b'
mytuple = mytyple
#what is the type of mytuple? What is the value?
def myfunc(val):
val += 'bar'
print(val)
return val
x = 'foo'
print (x) #what does it print?
x=myfunc(x)
print(val) #what does it print?
print (x) #what does it print?
The class syntax will create a new class. The name of the class is preceeded immediately by the keyword class
class ClassName:
#Optional class documentation string
class_suite
Using what you know develop an Employee class with two properties (name and salary) and a displayEmployee property that prints "Name: ", self.name, ", Salary: ", self.salary
Test it by making two employees named emp1 and emp2 with salaries 20 and 25.
class Employee:
'Common base for all employees'
def __init__(self, name, salary = 20):
self.name = name
self.salary = salary
def displayEmployee(self):
print "Name: ", self.name, ", Salary: ", self.salary
if __name__ == "__main__":
emp1 = Employee('name')
emp1.displayEmployee()
emp2 = Employee('name2', 25)
emp2.displayEmployee()
Class Employee:
'Common base for all employees'
def __init__(self, name, salary = 20):
self.name = name
self.salary = salary
def displayEmployee(self):
print ("Name: ", self.name, ", Salary: ", self.salary)
def printEmployees(*varEmployees):
for emp in varEmployees:
if isinstance(emp, Employee):
emp.displayEmployee()
if __name__ == "__main__":
emp1 = Employee('name')
emp2 = Employee('name2', 25)
printEmployees(emp1, emp2)
def f (x): return x**2
print f(8)
#or
g = lambda x: x**2
print g(8)
#guess the output here then try it!
def make_incrementor (n): return lambda x:x +n
f = make_incrementor(2)
g = make_incrementor(6)
print f(42), g(42)
print make_incrementor(22)(33)