Question: Using python, write a code for the program. 7. Error Detection Suppose you type a 14-digit credit card number into a Web site, but mistype
Using python, write a code for the program.


7. Error Detection Suppose you type a 14-digit credit card number into a Web site, but mistype one of the digits or inadvertently interchange two adjacent digits. The Web site will perform a validation check that always detects the first type of error and near ly always detects the second type of error. The validation check is as follows: 1. Starting with the leftmost digit, double it and then double every other digit after it. However, if any of the doubled digits is a two-digit number, subtract 9 from it. Then sum these new digits. For instance, if the credit card number is 58667936100244, then the digits considered are 5, 6, 7, 3, 1, 0, 4, their new replacements are 1, 3, 5, 6 2,0, 8, and the sum of the replacements is 25
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
