我試圖從python程序中的web服務器打印文本文本文件,但我收到錯誤。任何幫助將不勝感激,這裏是我的代碼:從web服務器打印文本文件到python程序打印錯誤
import RPi.GPIO as GPIO
import urllib2
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BOARD)
GPIO.setup(5,GPIO.OUT)
true = 1
while(true):
try:
response = urllib2.urlopen('http://148.251.158.132/k.txt')
status = response.read()
except urllib2.HTTPError, e:
print e.code
except urllib2.URLError, e:
print e.args
print status
if status=='bulbion':
GPIO.output(5,True)
elif status=='bulbioff':
GPIO.output(5,False)
什麼是您收到的「打印」錯誤? –
>>>%運行rasbpi.py 文件 「C:\用戶\潘迪\桌面\親\ PROGRAMM \ rasbpi.py」,第12行 打印狀態 ^ 語法錯誤:在調用 '打印' 缺少括號 –
srry formissunderstand –