我得到錯誤 「IndentationError:預期的縮進塊」蟒IndentationError 「預期的縮進塊」
線3 答案= subprocess.check_output(['/家/目錄/最終/ 3.sh 「])
我的代碼是:
import subprocess
while True:
answer = subprocess.check_output(['/home/dir/final/3.sh'])
final = int(answer) // int('1048576')
print final
3.sh結果前 「493281734」
一個關於Python的許多偉大的事情是,它的錯誤和故障處理是太棒了。這意味着錯誤意味着他們所說的話,並不意味着他們不說的話。以下是獲取錯誤時用於搜索的很好的資源:https://docs.python.org/3.5/library/exceptions.html – Doug