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

Within your main function, call the verify_card_number function and pass in the translated_card_number variable as an argument.

keeps giving me error

Your code so far

def verify_card_number(card_number):
    pass


# User Editable Region

def main(verify_card_number(translated_card_number)):
    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/121.0.0.0 Safari/537.36

Challenge Information:

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

You shouldn’t be putting your code in the function parentheses, but in the main body of the function itself.

I had the same problem @igorgetmeabrain is right I tried what he said out and it worked. Thanks.

I mean he/she I don’t know what gender they are

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.