I think i found a bug, because i am in the final step, it says to detete the print call within the verify_card_number function (the prints “print(total)“ and “print(“VALID!“)” and “print(INVALID!)“ are escencial). And i can’t STILL Find it! Where is it?
why would print(total) be essential?
these are not in verify_card_number, these are in main, so it would not be them
please share a link to this challenge
1 Like
print(“total“) shows the number, in this case, the valid number is 50.
Or well, it worked, thanks
It’s not invisible or missing. In between def verify_card_number(card_number): and return total % 10 == 0 there is a print command. That line should be deleted.
Thanks! AT START i deleted that line and it sended me an error. so it is a bug (i guess?), anyways, thanks!
but it is not essential, because the thing used from the function is the value returned
