剑指offer python版 求1+2+…+n

def aa(n):
    return sum(range(n+1))

print(aa(9))

 

posted @ 2018-10-29 16:12  findtruth123  阅读(301)  评论(0编辑  收藏  举报