python raspberry pi3 os.system synta错误语法无效

时间:2018-04-15 17:07:13

标签: syntax-error os.system

这是我的代码。当我运行代码时,它说语法错误=无效语法,它看到“&”符号作为无效语法。

enter code here
# -*- coding:utf-8 -*-
import RPi.GPIO as GPIO
import time
import os
buttonPin = 17
GPIO.setmode(GPIO.BCM)
GPIO.setup(buttonPin,GPIO.IN)
while True:
if (GPIO.input(buttonPin)):
     os.system("fswebcam -r -d 
      /dev/video0/home/pi/webcam.jpg")         
    os.system("python /home/pi/mailgonder.py")

1 个答案:

答案 0 :(得分:0)

while循环中的代码没有正确缩进,os.system参数应该用引号括起来。