Python實現根據IP地址和子網路遮罩算出網段的方法

來源:互聯網
上載者:User
本文執行個體講述了Python實現根據IP地址和子網路遮罩算出網段的方法。分享給大家供大家參考。具體如下:

該代碼在Linux環境2.6.6python版本測試通過!

#!/usr/bin/env python#_*_encoding:utf-8_*_#Input your ip address and netmask to figure out your network .#申明:此指令碼為互動式,預設情況下請執行python network.pyfrom IPy import IPinput_IP = raw_input('請輸入ip地址:')list1 = input_IP.split('.')if len(list1) != 4:  print "您輸入的ip地址不合法,請重新輸入!"  exit()for i in list1:  if i.isdigit() == True and int(i) >=0 and int(i) <= 255:    pass  else:    print "您輸入的ip地址不合法,請重新輸入!"    exit()input_Netmask = raw_input('請輸入子網路遮罩:')list2 = input_Netmask.split('.')if len(list2) != 4:  print "您輸入的子網路遮罩不合法,請重新輸入!"  exit()for i in list2:  if i.isdigit() == True and int(i) >=0 and int(i) <= 255:    pass  else:    print "您輸入的子網路遮罩不合法,請重新輸入!"    exit()print "您所在的網段為:%s" % (IP(input_IP).make_net(input_Netmask))

希望本文所述對大家的Python程式設計有所協助。

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.