如何讓我的其他打印只打印一次,而不是每一行字符串不存在?我嘗試通過拖拽幾層來移動它,但它不起作用。我瞭解邏輯,但我不知道如何限制它。我一次添加一點點到我的練習解析腳本,隨着我的學習,但是這個幫助我。謝謝!打印其他只有一次?
import csv
# Testing finding something specifical in a CSV, with and else
testpath = 'C:\Users\Devin\Downloads\users.csv'
developer = "devin"
with open (testpath, 'r') as testf:
testr = csv.reader(testf)
for row in testr:
for field in row:
if developer in row:
print row
else:
print developer + " does not exist!"
這應該是'如果開發人員在領域:'在您的代碼? (不是'in row:')? –