文件中讀出我已經嘗試了很多不同的東西來實現這一點,只需我想這一點:打印線從同一行
import requests
path1 = 'D:\test\Files\/results.txt'
lines1 = open(path1).readlines()
ctr = 0
for i in lines1:
try:
r = requests.get(i)
if r.status_code != 200:
ctr += 1
print(i, " Status Code: ", r.status_code)
except requests.ConnectionError:
ctr += 1
print(i, " Failed to connect")
print("Counter", ctr)
輸出是這樣的:
URL Status Code: xyz
而是我」 m得到:
URL
Status Code: xyz
那麼,打印出與Python相同的東西的最佳方式是什麼?
相信我,我已經嘗試過了。不工作 – Leustad
Python 3.x或Python 2.7.X? – ForceBru
'這是Python版本3.4.3' – Leustad