码迷,mamicode.com
首页 > 移动开发 > 详细

python检测手机号码是否合法

时间:2014-06-09 16:24:02      阅读:768      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

bubuko.com,布布扣
 1 !/usr/bin/python
 2 #encoding:utf-8
 3 #这是一个用来检测用户输入手机号码是否合法的小脚本。
 4 
 5 def phonecheck(s):
 6         #号码前缀,如果运营商启用新的号段,只需要在此列表将新的号段加上即可。
 7         phoneprefix=[130,131,132,133,134,135,136,137,138,139,150,151,152,153,156,158,159,170,183,182,185,186,188,189]
 8         #检测号码是否长度是否合法。
 9         if len(s)<>11:
10                 print "The length of phonenum is 11."
11         else:
12                 #检测输入的号码是否全部是数字。
13                 if  s.isdigit():
14                         #检测前缀是否是正确。
15                         if s[:3] in phoneprefix:
16                                 print "The phone num is valid."
17                         else:
18                                 print "The phone num is invalid."
19                 else:
20                         print "The phone num is made up of digits."
21 
22 
23 if __name__=="__main__":
24         phonenum=raw_input("Input your phone num:")
25         phonecheck(phonenum)
bubuko.com,布布扣

 

python检测手机号码是否合法,布布扣,bubuko.com

python检测手机号码是否合法

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/tmyyss/p/3776290.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!