python使用正则筛选信用卡
作者:水似冰 发布时间:2021-03-10 14:06:47
本文实例为大家分享了python使用正则筛选信用卡的具体代码,供大家参考,具体内容如下
本文来源于两个简单的题目:
1.判断一对单词是否是" Anagrams "
2.判断信用卡是否合理
判断 Anagramsstrong>
anagrams 的百度翻译:由颠倒字母顺序而构成的字(短语)
而题目给出例子:
[ DOG , ODG ]
[ DOG , DOG ]
[ DOG , GOD ]
[ DOG , GDO ]
均为 anagrams 。
那思路就简单了,直接拆分字母,排序,比较就 ok 。
判断信用卡
题目给出的要求如下:
The criteria are:
• It must start with a 4,5 or 6
• It must be exactly 16 digits
• It must be numbers only
• It can have a digits in groups of 4, separated by one hyphen “-“
• It should not contain any other characters.
• It must NOT have any 4 repeated digits.
样例输出如下:
378282246310005 Invalid
30569309025904 Invalid
6011111111111117 Invalid
5123-2332-3232-3213 valid
py文件
两个题目合并在一个 py 文件中。
而入参数分别是两个文件的名字,一个是 anagram.txt ,另一个是 credit_cards.txt ,他们分别长这样:
最后的程序长这样:
#! /usr/bin/python3
import re
###############################
##You need to implet the following methods:
##
##Question 1
##anagram_validator()
##
##Question 2
##credit_card_validator()
################################
###################################################
# Question 1: Check for anagrams:#
###################################################
def get_list(src_str):
sub_list=[]
word_tmp=''
for word in src_str:
if word != ',':
word_tmp = word_tmp+word
else:
sub_list.append(word_tmp)
word_tmp = ''
return sub_list
def read_anagram(file_name):
'''
Input: a file name
Return: a nested list of two words list
Example : [[word1,word2],[word3,word4]...etc]
'''
with open(file_name,encoding = 'utf-8') as f:
return_list =[]
file_conment = f.read()
file_conment_new = re.sub(r'\n',',',file_conment)
file_conment_new = file_conment_new+','
subs_list = get_list(file_conment_new)
i=0
while i < (len(subs_list)-1):
return_list.append([subs_list[i],subs_list[i+1]])
i=i+2
return return_list
def anagram_validator(anagram):
'''
Input is the output from "read_anagram()".
Return: list of "anagrams" or "Not anagrams" values for each two words
example input (dog,gdo),(try,elm) then output would be ["anagrams","Not anagrams"] with sequence of the input
'''
result_list=[]
for i in range(len(anagram)):
word_font = ''.join((lambda x:(x.sort(),x)[1])(list(anagram[i][0])))
word_back = ''.join((lambda x:(x.sort(),x)[1])(list(anagram[i][1])))
if word_font == word_back:
result_list.append('Anagrams')
else:
result_list.append('Not anagrams')
return result_list
############################################
# Question 2: Validate credit cards #
############################################
def read_credit_cards(file_name):
'''
Input: a file name
Return tuple of numbers
'''
with open(file_name,encoding='utf-8') as f:
card_conment = f.read()
card_conment = re.sub(r'\[','',card_conment)
card_conment = re.sub(r'\]','',card_conment)
card_conment = card_conment+','
card_list = get_list(card_conment)
return tuple(card_list)
def credit_card_validator(numbers):
'''
Input: tuple of numbers
Return:dictionary of credit card numbers where key is the number and value if valid or invalid
'''
validator_list=[]
credit_dict={}
for i in range(len(numbers)):
validator_list.append(numbers[i])
for i in range(len(numbers)):
ch_num = 0
repeat_flag = 0
for ch in validator_list[i]:
if ord("A")<=ord(ch)<=ord("Z"):
ch_num+=1
break
tmp_list = []
tmp_list = (re.sub(r"[^\d]", "", validator_list[i]))
for index in range(len(tmp_list)-4):
if(tmp_list[index] == tmp_list[index+1] and
tmp_list[index] == tmp_list[index+2] and
tmp_list[index] == tmp_list[index+3] ):
repeat_flag = 1
break;
if(validator_list[i][0] != '4' and
validator_list[i][0] != '5' and
validator_list[i][0] != '6' ):
credit_dict[validator_list[i]]='Invalid'
elif( len(re.sub(r"\D", "", validator_list[i])) != 16 ):
credit_dict[validator_list[i]]='Invalid'
elif(ch_num > 0):
credit_dict[validator_list[i]]='Invalid'
elif(
(re.search(r"-",validator_list[i])) and
( validator_list[i][4] != '-' or
validator_list[i][9] != '-'or
validator_list[i][14] != '-'
)
):
credit_dict[validator_list[i]]='Invalid'
elif(re.search(r"[^-\d]",validator_list[i])):
credit_dict[validator_list[i]]='Invalid'
elif(repeat_flag == 1 ):
credit_dict[validator_list[i]]='Invalid'
else :
credit_dict[validator_list[i]]='Valid'
space_str = ''
return credit_dict
def print_credit_card_summary(dict_o):
'''
Input: dict
Return:
printing summary of validation result - space between credit card and status is 40 width
example:
378282246310005 Invalid
30569309025904 Invalid
'''
space_str = ''
for key in dict_o:
new_str = key + dict_o[key]
if(dict_o[key] == "Valid"):
new_str_tmp = new_str[:-5]
space_lenth = 46-len(new_str)
for x in range(space_lenth):
space_str +=' '
print(new_str_tmp + space_str + 'Valid')
space_str=''
else :
new_str_tmp = new_str[:-7]
space_lenth = 48-len(new_str)
for x in range(space_lenth):
space_str +=' '
print(new_str_tmp + space_str + 'Invalid')
space_str=''
####### THE CODE BELOW IS FOR TESTING###################
############### DO NOT CHANGE #########################
import sys
if __name__ == '__main__':
# Take care of the console inputs
if len(sys.argv) <= 1:
sys.argv = ['', "anagram.txt", "credit_cards.txt"]
stars = '*' * 40
print(stars)
print("Testing Question 1 --- Anagrams?")
print(stars)
# testing reading_anagrams
try:
anagram = read_anagram(sys.argv[1])
if not anagram:
print("read_anagram() returns None.")
else:
print("anagram: ", anagram)
print()
except Exception as e:
print("Error (readnumbers()): ", e)
# testing anagram_validator
Anagrams = 0
NAnagrams = 0
try:
if not anagram: # Question 1 has not been implemented
print("anagram_validator() skipped....")
else:
result = anagram_validator(anagram)
if result == None:
print("anagram_validator() returns None.")
else:
for i in result:
if i == "Anagrams":
Anagrams += 1
elif i == "Not anagrams":
NAnagrams += 1
print("Number of valid Anagrams is {} and Not anagrams is {}.".format(Anagrams, NAnagrams))
except Exception as e:
print("Error (anagram_validator()):", e)
# testing Question 2
print("\n\n" + stars)
print("Testing Question 2 --- Credit Card Validator")
print(stars)
# Testing reading_credit_cards
try:
tup = read_credit_cards(sys.argv[2])
if not tup:
print("read_credit_cards() returns None.")
else:
print("The tuple of credit_cards: {}".format(tup))
except Exception as e:
print("Error (read_credit_cards()):", e)
# Testing credit_card_validator
vcc = 0
ivcc = 0
try:
if not tup: # Readin_Question 2 has not been implemented
print("credit_card_validator() skipped...")
else:
cc_dict = credit_card_validator(tup)
tmp_cc_dict = cc_dict
if not cc_dict:
print("credit_card_validator() returns None.")
else:
for items in cc_dict.keys():
if cc_dict[items] == "Valid":
vcc += 1
elif cc_dict[items] == "Invalid":
ivcc += 1
print("Number of valid credit cards is {} and invalid {}.".format(vcc, ivcc))
except Exception as e:
print("Error (credit_card_validator()):", e)
# testing Question 2
print("\n\n" + stars)
print("Testing Question 2b --- Print Credit Card Summary")
print(stars)
# Testing print_credit_card_summary
try:
if not tmp_cc_dict: # Dict credit card output has not been implemented
print("print_credit_card_summary() skipped...")
else:
import io # do not delete this line
from contextlib import redirect_stdout # do not delete this line
f = io.StringIO()
with redirect_stdout(f):
print_credit_card_summary(tmp_cc_dict)
out = f.getvalue()
if not out:
print("print_credit_card_summary() returns None.")
else:
count44 = 0
count46 = 0
for line in out.splitlines():
if len(line) - len(line.split()) == 44:
count44 += 1
elif len(line) - len(line.split()) == 46:
count46 += 1
if count44 == vcc and count46 == ivcc:
print("Your format looks good")
else:
print("You might have some issues in your summary format")
except Exception as e:
print("Error (print_credit_card_summary()):", e)
来源:https://blog.csdn.net/qq_30650153/article/details/84110948


猜你喜欢
- 环境pip install opencv-python==3.4.2.16pip install opencv-contrib-python
- go语言做爬虫也是很少尝试,首先我的思路是看一下爬虫的串行实现,然后通过两个并发实现:一个使用锁,另一个使用通道这里不涉及从页面中提取URL
- 守护进程模式使用python开发后台服务程序的时候,每次修改代码之后都需要重启服务才能生效比较麻烦。看了一下Python开源的Web框架(D
- 有一个需求就是需要对url进行进一步的划分得到详细的各个字段信息,下面是简单的实现:#!/usr/bin/python# -*- codin
- 本文实例讲述了Symfony2实现从数据库获取数据的方法。分享给大家供大家参考,具体如下:假设有一张表:test, 字段:name,colo
- 一、VS2008工程设置工作 首先,建立一个windows应用程序的工程,将C/C++->预处理器->预处理器定义下的_WIND
- 速查表是帮你记住东西的有效工具。Web设计师和开发者经常使用的快捷键简表会使他们在网上的工作效率大大提高。事实上,速查表就是来帮助我们把日常
- ASP(英文全称Active Server Pages)是一个编程环境,在其中,可以混合使用HTML、脚本语言以及组件来创建服务器端功能强大
- 本文实例讲述了JavaScript闭包与作用域链。分享给大家供大家参考,具体如下:闭包定义闭包指的是有权访问另一个函数作用域中的变量的函数。
- 前言MySQL日志记录了MySQL数据库日常操作和错误信息。MySQL有不同类型的日志文件(各自存储了不同类型的日志),从日志当中可以查询到
- 1. 如何停止任务?我们可以通过 asyncio.Task 对象上的 cancel() 方法取消任务。如果任务被取消,cancel() 方法
- 如下所示:加入代码:pd.set_option('display.width', 5000)补充知识:Python 实现不换
- 今天突然要做一个竖直滚动 * ,可以设置中奖位置,以及中奖回调,然后再带点常规的滚动动画,还是有点意思,和之前的转盘抽奖有点类似,有兴趣可以
- 目前数据预处理最常见的方法就是中心化和标准化。中心化相当于修正数据的中心位置,实现方法非常简单,就是在每个特征维度上减去对应的均值,最后得到
- resources文件下面有一个lang文件夹下面有一个en文件夹,这里就是后面要使用到的存放语言的语言包的地方了。下面设置app.php里
- 许多网页开发者想从ASP.NET 页面传递一个值到另一个页面(比如从一个框架frame页面到一个弹窗页面)。看了代码就明白了。呵呵。(一)向
- WGAN与GAN的不同去除sigmoid使用具有动量的优化方法,比如使用RMSProp要对Discriminator的权重做修整限制以确保l
- python列表元素去重后如何保持原来的顺序不变原列表:list1 = [1,2,1,4,9,3,5,2,6,7,3,1,6,8,4,0]去
- 在数据库查询的时候,我们有时有这样的需求,就是要找出数据表里指定范围行内的数据记录,比如说要找出数据表里第10行到第20行的这10条数据,那
- 在编程中我们往往会希望能够实现这样的操作:点击Button,选择了图片,然后在窗口中的Label处显示选到的图片。那么这时候就需要如下代码: