Python執行shell命令的幾種方式筆記

1.使用os.system執行 import os os.system('pwd') 輸出內容:/home/hadoop os.system('cat chinese.txt') 輸出內容:中文 2.使用os.popen執行(打開命令管道) import os output = os.popen('cat chinese.txt') print output
相關文章
相關標籤/搜索