Using Python Regex to extract phone numbers from a text file
with open ('lorem.txt', 'rt') as myfile: # Open lorem.txt for reading text
contents = myfile.read() # Read the entire file to a string
# print(contents) # Print the string if you want to
# Now let's extract ...
sihan.hashnode.dev2 min read