“Python Dapatkan alamat IP publik” Kode Jawaban

Python Dapatkan alamat IP publik

from requests import get

ip = get('https://api.ipify.org').text
print(f'My public IP address is: {ip}')
Beautiful Bear

Dapatkan Python IP Eksternal

# This example requires the requests library be installed.  You can learn more
# about the Requests library here: http://docs.python-requests.org/en/latest/

from requests import get

ip = get('https://api.ipify.org').text
print 'My public IP address is:', ip
Joeyeyey

Jawaban yang mirip dengan “Python Dapatkan alamat IP publik”

Pertanyaan yang mirip dengan “Python Dapatkan alamat IP publik”

Lebih banyak jawaban terkait untuk “Python Dapatkan alamat IP publik” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya