10.10.10.10:8000
10.10.10.10:8001
file_lines = ['"http":','"http://"'+,.join([' '])for x in f.readlines(),+',"']
“http”: “http://10.10.10.10:8000”,
“https”: “http://10.10.10.10:8001”,
:)
我不知道这是否是您所需要的,但是我写的东西很快。
但请记住:
所以我希望这会有所帮助:
lineList = [line.rstrip('\n') for line in open("path_to_data.txt")]
outArr = []
for line in lineList:
outArr.append('"http": ' + '"http://'+ line + '",')
for item in outArr:
print(item)
我用此数据对其进行了测试:
10.10.10.10:8000
10.10.10.11:8000
10.10.10.12:8000
10.10.10.13:8000
10.10.10.14:8000
10.10.10.15:8000
10.10.10.16:8000
10.10.10.17:8000
这是我的输出:
"http": "http://10.10.10.10:8000",
"http": "http://10.10.10.11:8000",
"http": "http://10.10.10.12:8000",
"http": "http://10.10.10.13:8000",
"http": "http://10.10.10.14:8000",
"http": "http://10.10.10.15:8000",
"http": "http://10.10.10.16:8000",
"http": "http://10.10.10.17:8000",