import socket #module for gethostbyname website = 'www.google.com'# you can put any website ip = socket.gethostbyname(website) print(ip)   'Output' '142.250.182.36'#ip of google.com

Read more of this post