林通過SFTP拉在一個文件中,並且無法計數出現打開一個文件並計算出現'|||'的次數
try:
with open(os.path.join(args.local, file)) as rcount:
count= rcount.read().strip().split('|||')
#count = list(rcount)[-1].rstrip().split('|||')[1]
logging.info('Number of count: %d' % int(count))
name = match('([A-Z0-9]+)', file)
也不指望語句的工作數量。
在文件中將會多次出現 YYYYMMDD | NNNNNNNNXXXXXX | Accepted |||
我的邏輯是計算文件中出現[|||]的次數。我還可以閱讀「接受」一詞。
'file.read()。count('|||')'? – timgeb