2014-01-30 65 views
0

我這個代碼周圍亂七八糟的蟒蛇儘可能仍然似乎無法得到它的工作的Python:無法修復IndentationError:預計縮進塊

#!/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

檢查該行上是否有混合的製表符和空格。只用空格縮進!否則,你會遇到很大的痛苦。

相關問題