>>> %Run L16B.py >>> PrintListofStrings( ['Jason','Grant','cs101'] ) J a s o n G r a n t c s 1 0 1 >>> %Run L16B.py >>> PrintListofStrings( ['Jason','Grant','cs101'] ) Jason Grant cs101 >>> %Run L16B.py >>> PrintListofStrings( ['Jason','Grant','cs101'] ) Jason Grant cs101 >>> %Run L16B.py >>> %Run L16B.py >>> PrintListofStrings( ['Jason','Grant','cs101'] ) ' J '' a '' s '' o '' n ' ' G '' r '' a '' n '' t ' ' c '' s '' 1 '' 0 '' 1 ' >>> %Run L16B.py >>> %Run L16B.p >>> %Run L16B.py >>> SimpleDrawing() >>> %Run L16B.py >>> SimpleDrawing() >>> %Run L16B.py >>> SimpleDrawing() >>> %Run L16B.py >>> SimpleDrawing() >>> %Run L16B.py >>> src = Image.open('statue.jpg') >>> dst = Upsampling(src) >>> src.show() >>> dst.show() >>> src = Image.open('smallstatue.jpg') >>> dst = Upsampling(src) >>> src.show() >>> dst.show() >>> %Run L16B.py >>> src = Image.open('statue.jpg') >>> dst = Downsampling(src) >>> src.show() >>> dst.show() >>> dst2 = Downsampling(dst) >>> dst2.show() >>> dst3 = Downsampling(dst2) >>> dst3.show() >>> updst2 = Upsampling(dst3) >>> updst2.show() >>> updst3 = Upsampling(updst2) >>> updst3.show() >>> updst4 = Upsampling(updst3) >>> updst4.show() >>>