mirror of
https://github.com/Astatin3/ip-hilbert.git
synced 2026-06-08 16:08:00 -06:00
4 lines
136 B
Python
4 lines
136 B
Python
with open("./ips_1.txt") as f:
|
|
lines = f.readlines()
|
|
for line in lines:
|
|
print(line.split("/")[1].split(":")[0].rstrip()) |