Home Backend Development Python Tutorial 一个计算身份证号码校验位的Python小程序

一个计算身份证号码校验位的Python小程序

Jun 06, 2016 am 11:32 AM
identification number

S = Sum(Ai * Wi), i=0,.......16 (现在的身份证号码都是18位长,其中最后一位是校验位,15位的身份证号码好像不用了)

Ai对应身份证号码,Wi则为用于加权计算的值,它一串固定的数值,应该是根据某种规则得出的吧,用于取得最好的随机性,Wi的取之如下:

7   9 10 5
8   4   2   1
6   3   7   9
10  5   8   4   2

经过加权计算之后,得到一个S,用这个S去模11,取余值,然后查表得到校验位,这个索引表如下:

0 ----- 1
1 ----- 0
2 ----- x
3 ----- 9
4 ----- 8
5 ----- 7
6 ----- 6
7 ----- 5
8 ----- 4
9 ----- 3
10 ----- 2

程序代码如下:

import sys

Wi = [7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7,9, 10, 5, 8, 4, 2]
IndexTable = { #此处实际是无需使用字典的,使用一个包含11个元素的数组便可,数组中存放
        0 : '1', #相应位置的号码,但是这也正好演示了Python高级数据结构的使用
        1 : '0',
        2 : 'x',
        3 : '9',
        4 : '8',
        5 : '7',
        6 : '6',
        7 : '5',
        8 : '4',
        9 : '3',
        10 : '2'
    }
No = []
sum = 0
if (len(sys.argv[1:][0]) != 17):
    print "error number"
    sys.exit()
for x in sys.argv[1:][0]:
        No.append(x)
for i in range(17):
    sum = sum + (int(No[i]) * Wi[i])
Index = sum % 11
print "So, your indicates parity is : %s" % (IndexTable[Index])

Copy after login

运行程序方式如下:

#python getParity.py your-indentity-number-but-except-the-last-number

我的天啊,Python内置的数据结构是如此强大而易用,越来越为之而着迷啊,继续diving~

用函数封装一下,改进的代码如下:

import sys

if __name__ != '__main__':
  print "Cannot run in module"
  sys.exit()

Wi = [7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7,9, 10, 5, 8, 4, 2]
IndexTable = {
    0 : '1',
    1 : '0',
    2 : 'x',
    3 : '9',
    4 : '8',
    5 : '7',
    6 : '6',
    7 : '5',
    8 : '4',
    9 : '3',
    10 : '2'
  }

def check(identity):
  if(len(identity) == 0):
    print "please input your identity number"
    sys.exit()
  elif (len(identity[0]) != 17):
    print "error number"
    sys.exit()

def calculate(identity):
  No = []
  sum = 0
  for x in identity[0]: #这个方法是很笨拙的,直接使用No = list(identity[0])便可达到同样的目的
    No.append(x)

  for i in range(17):
    sum = sum + (int(No[i]) * Wi[i])

  Index = sum % 11
  return IndexTable[Index]

check(sys.argv[1:])
result = calculate(sys.argv[1:]) 

print "So, your indicates parity is : %s" % (result)
Copy after login

忘记函数原型吧,这里不需要指明返回值类型,不需要指明形参数据类型。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use Python regular expressions to extract ID number How to use Python regular expressions to extract ID number Jun 22, 2023 am 10:35 AM

In the process of data processing, it is often necessary to extract information in a specific format from text. As a relatively common piece of personal information, ID number is often used in data processing. You can use Python regular expressions to easily extract the ID number and perform certain verification on it. The ID card number is composed of 18 digits, including the region, date of birth, check code and other information in the ID card number. In Python, we can use the regular expression function of the re module to extract the ID number. head

PHP regular expression to verify whether the input string is in the format of ID number or passport number PHP regular expression to verify whether the input string is in the format of ID number or passport number Jun 24, 2023 pm 12:11 PM

ID number and passport number are common document numbers in people's lives. When implementing functions involving these document numbers, it is often necessary to perform format verification on the entered numbers to ensure their correctness. In PHP, regular expressions can be used to achieve this function. This article will introduce how to use PHP regular expressions to verify whether the input string is in the format of an ID number or passport number. 1. ID card number verification The ID card number is composed of 18 digits and the last digit may be a letter (check code). Its format is as follows: the first 6

PHP regular expression to verify birthday information of ID number PHP regular expression to verify birthday information of ID number Jun 24, 2023 pm 02:22 PM

The ID number is an identity proof tool that we often use in our daily lives, and the birthday information contained in it is also very important. When using PHP to verify ID numbers, we often need to determine whether the birthday information is correct. This article will introduce how to use PHP regular expressions to verify the birthday information of the ID number. 1. The basic format of the ID number. The ID number is a string composed of 18 digits and letters. The last digit may be a number or a letter, and may be uppercase or lowercase. The first 17 digits are the owner of the ID card

How to use PHP regular expressions to verify whether the input string is the correct ID number, passport number or Hong Kong and Macao pass format How to use PHP regular expressions to verify whether the input string is the correct ID number, passport number or Hong Kong and Macao pass format Jun 24, 2023 am 10:36 AM

ID cards, passports and Hong Kong and Macao pass numbers are all important personal identity certificates. In order to ensure the security of personal information, we need to verify in the system whether the ID number entered by the user complies with the standard format. PHP regular expressions are a very powerful tool that can easily achieve this purpose. This article will introduce how to use PHP regular expressions to verify the ID number, passport number and Hong Kong and Macao pass number entered by the user. 1. ID card number format verification The ID card number is an 18-digit number, and the last digit may be a number or the letter X. identity

How to use regular expressions in Go language to determine whether a string is a legal ID number How to use regular expressions in Go language to determine whether a string is a legal ID number Jul 13, 2023 pm 07:55 PM

How to use regular expressions in Go language to determine whether a string is a legal ID number. The ID number is a unique identifier for each Chinese citizen and is also an important basis for identifying individuals in all aspects of society. In data processing, it is often necessary to determine whether a string is a legal ID number. This article will introduce how to use regular expressions in Go language to determine whether a string is a legal ID number. In Go language, using regular expressions requires introducing the regexp package. The following is a regular expression to determine the ID number

PHP regular expression method to verify the validity and gender of ID number PHP regular expression method to verify the validity and gender of ID number Jun 24, 2023 am 09:36 AM

The ID number is an important symbol for the identification of residents in our country, and it can be used for identity verification on many occasions. In the application, in order to ensure the validity and accuracy of the ID number, it needs to be verified by regular expressions. This article will introduce how to use PHP regular expressions to verify the validity and gender of the ID number. 1. The composition and rules of the ID card number The ID card number consists of 18 digits or 17 digits plus a 1-digit check code. Among them, the first 17 digits represent the ID card holder’s information, and the last 1 digit represents the verification code, which is used to verify the ID card.

PHP regular expression practice: matching ID number PHP regular expression practice: matching ID number Jun 23, 2023 am 10:24 AM

In daily development, there are many scenarios where ID numbers need to be matched. The ID number is a fixed format, but each province has slightly different rules, so a specific regular expression is needed to match. PHP is a widely used programming language that provides built-in regular expression functions and classes that can easily match ID numbers. This article will introduce how to use PHP regular expressions to match ID card numbers. ID card number format The ID card number consists of 18 digits and a check code, where the check code

How to verify age range of ID number using PHP regular expression How to verify age range of ID number using PHP regular expression Jun 24, 2023 pm 01:00 PM

The ID card number is the only identity certificate for Chinese citizens, which contains personal identity information such as date of birth. In practical applications, it is sometimes necessary to verify the age range of ID numbers. PHP regular expressions are a very convenient way to implement this. This article will introduce how to use PHP regular expressions to verify the age range of an ID number. 1. ID card number structure The ID card number consists of seventeen characters and is divided into six parts: the first two digits are the province code, the middle four digits are the city and county code, the next two digits are the year code, and the next two digits are the year code. Bit

See all articles