>>> %Run L06-class2.py >>> WashClothes() Is it clean? (y/n) y >>> WashClothes() Is it clean? (y/n) n >>> %Run L06-class2.py >>> WashClothes() Is it clean? (y/n) y >>> WashClothes() Is it clean? (y/n) n Is it clean? (y/n) y >>> %Run L06-class2.py >>> WashClothes() Clothes are washing. Is it clean? (y/n) y >>> WashClothes() Clothes are washing. Is it clean? (y/n) n Clothes are washing. Is it clean? (y/n) n Clothes are washing. Is it clean? (y/n) y >>> %Run L04-class2.py >>> Greeting() Welcome to CS 101 I hope you are having a great morning There is no lab today or tomorrow >>> %Run L06-class2.py >>> AskAQ() Why did you enroll in CS 101potentially want to be a cs major Why? he wants a job Why? so make lots of money Why? humanitarian Why? I quit >>> %Run L06-class2.py >>> Factorial(4) 24 >>> %Run L06-class2.py >>> FibNum(0) 1 >>> FibNum(1) 1 >>> FibNum(2) 2 >>> FibNum(3) 3 >>> FibNum(4) 5 >>> FibNum(5) 8 >>> FibNum(6) 13 >>> %Run L06-class2.py >>> CompSq(0) 0 >>> CompSq(1) 1 >>> CompSq(2) 4 >>> CompSq(3) 9 >>> CompSq(4) 16