On 2020-11-08 19:25, Quentin Bock wrote:
*def add(numbers):*
*   total = 1*
*   for x in numbers:*
*          total += 1*
*   return total*
*print(add[1999, -672, 64]))*

*the answer I get is 4 but it should be 1,411*

1. You typed "total += 1", which means it's adding 1 each time around the loop.

2. The print line as written above is incorrect.

3. I don't see how can the answer be 1,411!
--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to