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
我很感謝一些幫助!