Find out all the details of phone number using Python:-

 Find out all the details of phone number using Python:-




 First You go to your terminals
  there write a command
  pip install phonenumbers
  A python Libery will be download, then you Just paste the below code in your Code Editor...

Source Code:-

import phonenumbers
from phonenumbers import timezone, carrier,geocoder

#Enter your phone Number with country code

number=input("Enter Number:")

phone=phonenumbers.parse(number)

time=timezone.time_zones_for_number(phone)
carrier_name=carrier.name_for_number(phone,"en")
location=geocoder.description_for_number(phone,"en")

print("you want information:",number)
print("\n Time Zone :",time)
print("\n Carrier name:",carrier_name)
print("\n The number belong location:",location)



  
Previous Post Next Post