摘要:
Exercise: Solution: def sum_array(arr): if arr: #判断序列是否 为 空 :if arr > TRUE 不是空序列 if len(arr) > 2: # 序列是否存在两个以上的 元素 arr.remove(max(arr)) arr.remove(min 阅读全文
摘要:
Exercise: Solution: def count_by(x, n): return list(range(x, x * n +1, x)) 阅读全文
摘要:
Exercise: Solution: 1. def reverse words (text) t = text[-1::-1] t2 = t.split(‘ ‘) t2. reverse() t3. join(t2) return t3 2. def reverse words (text): r 阅读全文