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

Tell us what’s happening:

Please someone help me with this, my code still doesn’t pass

Your code so far


# 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)

def main():
    pass

# User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/111.0.0.0 (Edition Campaign 34)

Challenge Information:

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

def main():
    pass

You have already Defined (def) the function. You only need to do this once.

Now you need to call it. Just like you call any other function:

print()

Thank you, I had not read the indication correctly, I will be more attentive next time

1 Like