Hi, can I get help with the 27th test? Is it for the string "5" ? When I try that number i get the right output ("5" => 5).
Here is my readout:
Testing for bad inputs
Test Passed
Log
7 - A
Test Passed
Log
3 + 2 *
Test Passed
Log
/ 7 + 3
Test Passed
Log
5
STDERR:
Traceback:
in
in calculate
TypeError: argument of type 'int' is not iterable
Hmm. ok, i thought i handled for that situation but let me look again. Thanks!
5 is a int, not str. The function accepts str only, that's why it expects returned value of int input to be False.
Hi, can I get help with the 27th test? Is it for the string "5" ? When I try that number i get the right output ("5" => 5).
Here is my readout:
Testing for bad inputs
Test Passed
Log
7 - A
Test Passed
Log
3 + 2 *
Test Passed
Log
/ 7 + 3
Test Passed
Log
5
STDERR:
Traceback:
in
in calculate
TypeError: argument of type 'int' is not iterable
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Thanks
Not a suggestion
Not a suggestion
It's mentioned in the descriptions, so it's your fault ;-)
Not an issue, a question.
Observe the expected and actual results to see which part you're missing.
This comment is hidden because it contains spoiler information about the solution
Thanks!
This was an incredibly hard kata and I learned alot from making it and then going through the tests. Much thanks to the author.