【Python標準庫:fileinput】優雅的讀取檔案
每當我寫個指令碼涉及檔案輸入時,一般寫法都是下面這種
import sys
file_in = sys.argv[1]
for line in open(file_in, `r`):
commands
這個操作有一個缺點就是,如果我想從管道里面傳入資料給Python的話,就會報錯,因為原始碼要求檔案而不是標準輸入。
這個問題可以通過Python的一個標準庫: fileinput進行解決。
import fileinput
for line in fileinput.input():
process(line)
fileinput.intpu()
會幫我們自動處理輸入。如果sys.argv[1:]
裡有輸入檔案,它就會對裡面所有的檔案進行遍歷,如果sys.argv
為空,那麼它就會從標準輸入sys.stdin
裡讀取輸入,如果輸入檔案的檔名是”-“, 同樣地會從標準輸入裡讀取輸入。這樣子就省去了我們自己寫條件語句進行判斷輸入型別。
相關文章
- python讀取大檔案Python
- python小白檔案讀取Python
- python 讀取文字檔案Python
- python中xlrd庫如何實現檔案讀取?Python
- 使用python的netCDF4庫讀取.nc檔案 和 建立.nc檔案Python
- 使用fileinput上傳檔案
- Python標準庫04 檔案管理 (部分os包,shutil包)Python
- python如何讀取大檔案Python
- python讀取yaml配置檔案的方法PythonYAML
- Python標準庫分享之檔案管理 (部分os包,shutil包)Python
- C#如何優雅的多表讀取C#
- 如何通過 JavaCSV 類庫來優雅地(偷懶)讀寫 CSV 檔案?Java
- Python 讀取HDF5檔案Python
- python怎麼讀取配置檔案Python
- python解壓並讀取檔案Python
- C++標準庫名字和標頭檔案--表C++
- 優雅的操作檔案:java.nio.file 庫介紹Java
- python讀取大檔案的幾種方法Python
- python常用標準庫Python
- Python生成器讀取大檔案Python
- python檔案建立、讀取和寫入Python
- 透過python讀取ini配置檔案Python
- python 使用字典讀取CSV檔案Python
- python檔案讀取 readlines()方法之坑Python
- python-geopandas讀取、建立shapefile檔案Python
- 如何在python中讀取配置檔案Python
- python常用標準庫(os系統模組、shutil檔案操作模組)Python
- python讀取檔案指定行的三種方法Python
- Python逐行讀取檔案常用的三種方法!Python
- 使用Python讀取PlantUML匯出的XMI檔案Python
- 使用openpyxl庫讀取Excel檔案資料Excel
- Python標準庫(待續)Python
- python標準庫目錄Python
- python讀取docx檔案,就是如此簡單Python
- Python實用方法之讀取本地檔案Python
- Python基礎知識之檔案的讀取操作Python
- python程式碼讀取遠端檔案的方法--paramikoPython
- ENVI匯出的tif檔案,python讀取失敗。Python