def is_arithmetic(l): delta = l[1] - l[0] for index in range(len(l) - 1): if not (l[index + 1] - l[index] == delta): return False return True print(is_arithmetic([5, 7, 9, 11])) print(is_arithmetic([5, 8, 9, 11]))
def is_arithmetic(l): delta = l[1] - l[0] for index in range(len(l) - 1): if not (l[index + 1] - l[index] == delta): return False return True print(is_arithmetic([5, 7, 9, 11])) print(is_arithmetic([5, 8, 9, 11]))
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。