def read_files(file_allmail,file_blacklist):
with open("all_email_large.txt", 'r') as f:
allmail = f.read().splitlines()
with open("bkacklist_large.txt", 'r') as f1:
blacklist = f1.read().splitlines()
return allmail,blacklist
Instead of pre-selecting a document I would like to be able to parameterize them in the command line. In other words, I want to be able to select different documents that python should make a list of.