Zero's Blog - Python 2021-01-09T16:29:00+00:00 Typecho https://l2dy.sourceforge.io/feed/atom/tag/Python/ <![CDATA[Python 快速拆子网]]> https://l2dy.sourceforge.io/2021/01/09/python-subnet.html 2021-01-09T16:29:00+00:00 2021-01-09T16:29:00+00:00 Zero https://l2dy.sourceforge.io/ 两行搞定

import ipaddress
list(map(str, ipaddress.ip_network('10.0.0.0/24').subnets(new_prefix=25)))
]]>