python - 这个def中n + = 2是什么?

时间:2012-10-23 02:49:45

标签: python

  

可能重复:
  What does += mean in Python?

我有一个def函数看起来像:

def s(xs, n, m):
    t = []
    while n < m:
        t.append(xs[n])
        n += 2
    return t

我通过t.append(xs [n])理解上面的代码,但不知道n + = 2在这里意味着什么。

任何帮助将不胜感激。 感谢

1 个答案:

答案 0 :(得分:2)

它增加了2到n。我需要30个字符作为答案。