我尽可能地在python中乱码了这段代码,似乎仍无法让它工作
#!/usr/bin/env python
from time import sleep
import os
import RPi.GPIO as GPIO
GPIO.setmode (GPIO.BCM)
GPIO.setup (23, GPIO.IN)
while True:
if ( GPIO.input (23) == False ):
os.system('mpg321 Sioux Goal Horn2.mp3 &')
sleep (0.1);
我为改变它所做的每一件事,我总是得到同样的信息。
~ $ chmod +x ButtonBasedGoalSound.py
~ $ sudo python ButtonBasedGoalSound.py
File "ButtonBasedGoalSound.py" line 9
os.system(''mpg321 Sioux Goal Horn2.mp3 &')
^
IndentationError: expected an indented block
我很感激一些帮助!
答案 0 :(得分:0)
检查该行上是否有混合标签和空格。仅限空格缩进!否则你会经历巨大的痛苦。