Skip to content

Instantly share code, notes, and snippets.

@a-r-d
Created October 29, 2012 18:28
Show Gist options
  • Save a-r-d/3975494 to your computer and use it in GitHub Desktop.
Save a-r-d/3975494 to your computer and use it in GitHub Desktop.
generate all phones in area code
def main():
f = open("phonenums.txt", "w")
start = 513000000
while(start < 514000000):
f.write("%s\n" % start)
start += 1
f.close()
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment