#37. This lesson teaches: multiple parameters in functions, #more flow control with elif, using functions in functions #and (data)type conversion # ''' def multiPara(name, last): print("You first name is " + name + " and your last name is " + last) if name != "Luc": print("I thought it was you!") multiPara("Michael", "Trudel") ''' def ESDcaller (name, last, dept, tel, email): print("Thank you for calling the SD, " + name + " " + last + ". Can you confirm that I have entered the correct information in case we need to call you back. Is your phone number " + tel + "? ... and is your email address " + email + "?") if name == "Eric": print("So you're not Eric? Is your name " + name + "?") elif name == "Jimmy": print("Thank you Eric!") else: print("You got the catch all. Congratulations!") #ESDcaller("Eric", "Smith", "VAC", "514-989-9999", "eric.smith@vac.gc.ca") ESDcaller("Marc", "Smith", "VAC", "514-989-9999", "eric.smith@vac.gc.ca") ESDcaller("Luc", "Smith", "VAC", "514-989-9999", "eric.smith@vac.gc.ca")