You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Created by Krasimir Vatchinsky - KGV Consulting Corp - [email protected]
# This program will extract emails form user entered data source file,and count how many times this email was used
print("This program will search for an email in data source file\nin user input file source and extract the email address,\nthat was used the most times\n")
file_name = input('Enter a file name: ')
try:
file_hand = open(file_name)
except:
print('File does not exist, Sorry try again: ', file_name)