溫馨提示×

python讀取文件怎么篩選特定信息

小億
122
2024-03-27 16:04:31
欄目: 編程語言

要篩選特定信息,你可以使用Python讀取文件,并使用條件語句來篩選出符合特定條件的信息。以下是一個簡單的示例:

假設有一個文件test.txt,內(nèi)容如下:

apple, 5
banana, 10
orange, 8
grape, 6

現(xiàn)在我們想篩選出數(shù)量大于等于8的水果,可以使用如下代碼:

with open('test.txt', 'r') as file:
    for line in file:
        fruit, quantity = line.strip().split(', ')
        if int(quantity) >= 8:
            print(fruit)

運行以上代碼,將會輸出:

banana
orange

這樣就篩選出了數(shù)量大于等于8的水果。你可以根據(jù)自己的需求修改條件語句來篩選出不同的信息。

0