新手Python程序员与列表纠缠在一起

时间:2010-03-21 19:40:58

标签: python list

这是我到目前为止所得到的:

# A. match_ends
# Given a list of strings, return the count of the number of
# strings where the string length is 2 or more and the first
# and last chars of the string are the same.
# Note: python does not have a ++ operator, but += works.
def match_ends(words):
  counter = 0
  for word in words:
    if len(word) >= 2 and word[0] == word[-1]:
      counter += counter
  return counter
  # +++your code here+++
  return

我正在关注Google Python课程,所以这不是家庭作业,但我只是在学习和提高自己;所以请不要对'不做我的功课'做出负面评论。 :P

你们认为我在这里做错了什么?

结果如下:

match_ends
  X  got: 0 expected: 3
  X  got: 0 expected: 2
  X  got: 0 expected: 1

我真的很喜欢Python,所以我只是知道我会更好。 :)

2 个答案:

答案 0 :(得分:2)

你应该这样做:

counter += 1

而不是

counter += counter

所有年龄段都保持在0。

答案 1 :(得分:0)

counter += 1

你加0到0