python 將ipv4的格式轉換

來源:互聯網
上載者:User

標籤:ipv4   python   格式轉換   

  Python的 socket 庫提供了很多用來處理不同IP地址格式的函數,要使用底層網路函數,有時普通的字串形式的IP地址並不是很有用,需要把它們轉換成打包後的32位二進位格式,Python的socke庫提供了很多用來處理不同IP地址格式的函數,這裡我們使用其中的兩個相對標準:inet_aton() 和inet_ntoa()我們來定義convert_ip4_address()函數,調用inet_aton() 和 inet_ntoa() 轉換IP地址。這裡使用兩個樣本IP地址:192.168.10.1 和 10.10.10.128


段代碼中技術點使用了如下幾個方面:

1、for-in迴圈語句定義192.168.10.1和10.10.10.128兩個IP

2、使用inet_aton()把兩個字串格式的IP地址轉換成打包後的32位二進位格式

3、使用inet_ntoa()把轉換成打包的32bit地址轉換為十進位格式

3、使用binascii模組中的hexlify函數,以十六進位形式表示位元據。

4、print分段列印輸出格式


代碼如下:

import  socketfrom binascii import hexlifydef convert_ipv4_address():    for ip_addr in  [‘192.168.10.1‘,‘10.10.10.128‘]:        packed_ip_addr = socket.inet_aton(ip_addr)        unpacked_ip_addr = socket.inet_ntoa(packed_ip_addr)        print ("IP Address: %s => Packed: %s, Unpacked: %s" %(ip_addr,hexlify(packed_ip_addr),unpacked_ip_addr))convert_ipv4_address()

備忘:還要是注意格式的縮排,python對於縮排格式要求相對嚴格

執行結果如下:

650) this.width=650;" src="https://s3.51cto.com/wyfs02/M00/9E/90/wKiom1mSkGnBGOmCAABEVRSVnQo882.jpg" title="QQ20170815140623.jpg" width="725" height="93" border="0" hspace="0" vspace="0" style="width:725px;height:93px;" alt="wKiom1mSkGnBGOmCAABEVRSVnQo882.jpg" />


本文出自 “老白的部落格” 部落格,請務必保留此出處http://laobaiv1.blog.51cto.com/2893832/1956413

python 將ipv4的格式轉換

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.