# Write a function that finds all phone numbers from # http://www.virginia.edu/contact # The function then returns a list of all phone numbers # in the area code 434. # If the same phone number appears multiple times, # only one should be reported. # For practice purposes, you should create 2 versions of your solutions. # One version reads a file from the internet; # one version reads a file from your computer (locally). import import def findPhoneNumber(url): url = "http://www.virginia.edu/contact" print(findPhoneNumber(url))