how to connect a socket to my ip python code example

Example 1: python socket get client ip address

## importing socket module
import socket
## getting the hostname by socket.gethostname() method
hostname = socket.gethostname()
## getting the IP address using socket.gethostbyname() method
ip_address = socket.gethostbyname(hostname)
## printing the hostname and ip_address
print(f"Hostname: {hostname}")
print(f"IP Address: {ip_address}")

Example 2: python socket get client ip address

Hostname: DESKTOP-A0PM5GD
IP Address: 192.168.43.15