Write a Python function called validateCreditCard that takes 8-digit credit card number as the input parameter (string value) and display whether that number is valid or not. For example,
validateCreditCard ("43589795") will display "Valid credit card number"
validateCreditCard ("43589795") will display "Invalid credit card number"
+1
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Write a Python function called validateCreditCard that takes 8-digit credit card number as the input parameter (string value) and display ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Computers & Technology » Write a Python function called validateCreditCard that takes 8-digit credit card number as the input parameter (string value) and display whether that number is valid or not.