问题是在不使用 len(list) 的情况下计算列表中的元素。
我的代码:
def countFruits(crops):
count = 0
for fruit in crops:
count = count + fruit
return count
错误是:“int”和“str”
这些应该是应该运行程序的测试用例。
crops = ['apple', 'apple', 'orange', 'strawberry', 'banana','strawberry', 'apple']
count = countFruits(crops)
print count
7