Lecture Notes on 25 Jan 2017 Active Reading: Type code as you read. Read Chapter 2: Sections 2.1 - 2.8 Write the code from the following listings and run them: * Listing 2.1: ComputeArea.py * Listing 2.2: ComputeAreaWithConsoleInput.py * Listing 2.3: ComputeAverage.py * Listing 2.4: ComputeAverageWithSimultaneousAssignment.py * Listing 2.5: DisplayTime.py def main(): # prompt the user to enter and say hello name = input ("Enter name: ") print ("Hello " + str (name) + "!") # prompt the user to enter two numbers and add them x = int (input ("Enter x: ")) y = int (input ("Enter y: ")) z = x + y print (str (x) + " + " + str (y) + " = " + str (z)) main()