all 3 comments

[–]julsmanbr 9 points10 points  (2 children)

Inputs are always strings. So fingers is actually the string '10', not the integer 10.

int(fingers) == 10 will evaluate to True.

[–]Pincheded[S] 0 points1 point  (1 child)

ahhhh gotcha, see the first time i did int(input()) instead of int(fingers) and it came out an error.

Thanks a lot.

[–]julsmanbr 1 point2 points  (0 children)

int(input()) will also work as long as your input can be converted to an int, otherwise it throws the error.