似乎在for循環中有語法錯誤,但我不知道爲什麼。我對Python有些新鮮,我在Centos上嘗試了這一點。Python for循環語法錯誤
fil = open('acnt_data_text.txt', 'r')
for data_str in fil:
result = subprocess.call(["php", "class.php"], data_str)
print result
fil.close()
語法錯誤:invalid syntax: for data_str in fil:
在你的代碼確保間隔開這條線'結果=子.call([「php」,「class.php」],data_str)'在您的for循環中。 – idjaw