1
我正在嘗試ping應用程序運行後輸入的特定IP地址。這是我當前的代碼,但每次輸入IP時都會出現錯誤,提示語法無效。我已經搜索了其他主題,但它們涉及一次ping一系列IP。謝謝你的幫助。Python - Ping輸入的特定IP
def pingComputer():
import os
hostname = input("Enter the ip address: ")
response = os.system("ping -c 1 " + hostname)
if response == 0:
print hostname, 'is up!'
else:
print hostname, 'is down!'
是您的縮進本題正確? – Serdalis
你需要提供確切的錯誤信息 – PyNEwbie
我不認爲有一個用於ping的-c參數,但不是很確定 – PyNEwbie