問題は、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