Learn How to Work with Numbers and Strings by Implementing the Luhn Algorithm - Step 8

Tell us what’s happening:

I try my best but i can not get the solution here.

Your code so far

def verifay_card_number(translated_card_number):
pass

def verify_card_number(card_number):
    pass


# User Editable Region

def main():
    card_number = '4111-1111-4555-1142'
    card_translation = str.maketrans({'-': '', ' ': ''})
    translated_card_number = card_number.translate(card_translation)

    print(translated_card_number)


# User Editable Region

main()

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36

Challenge Information:

Learn How to Work with Numbers and Strings by Implementing the Luhn Algorithm - Step 8

Welcome to the forum @sizim2010

You should have verify_card_number(translated_card_number) within the main function.

Happy coding