- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLuhnAlgorithm.py
More file actions
Latest commit
34 lines (29 loc) · 1.13 KB
/
Copy pathLuhnAlgorithm.py
File metadata and controls
34 lines (29 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#LUHN ALGORITHM
#The Luhn algorithm is as follows:
#From the right to left, double the value of every second digit; if the product is greater than 9, sum the digits of the products.
#Take the sum of all the digits.
#If the sum of all the digits is a multiple of 10, then the number is valid; else it is not valid.
defverify_card_number(card_number):
sum_of_odd_digits=0
card_number_reversed=card_number[::-1]
odd_digits=card_number_reversed[::2]
fordigitinodd_digits:
sum_of_odd_digits+=int(digit)
sum_of_even_digits=0
even_digits=card_number_reversed[1::2]
fordigitineven_digits:
number=int(digit) *2
ifnumber>=10:
number= (number//10) + (number%10)
sum_of_even_digits+=number
total=sum_of_odd_digits+sum_of_even_digits
returntotal%10==0
defmain():
card_number='4111-1111-4555-1142'
card_translation=str.maketrans({'-': '', ' ': ''})
translated_card_number=card_number.translate(card_translation)
ifverify_card_number(translated_card_number):
print('VALID!')
else:
print('INVALID!')
main()