This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import webbrowser | |
areaCode = input("What is the area code of the phone number? ") | |
middle3 = input("What are the middle 3 digits? ") | |
last4 = input("What are the last 4 digits? ") | |
phoneNumber = str(areaCode) + str(middle3) + str(last4) | |
fourOneOne = "https://www.411.com/phone/" + "1-" + str(areaCode) + "-" + str(middle3) + "-" + str(last4) | |
webbrowser.open(fourOneOne) |