#生成器 不会记录在内存里,而是用快捷方式记录,并且记录上一次的位置,返回下一个值sum(range(1,101)) def my_range(first=0, last=10, step=1): number = first while number < last: yield number ......
三.实例def boxPrint(symbol, width, height): if len(symbol) != 1: raise Exception('Symbol must be a single character string.') if width <= 2: raise Exception('...