yidao620c / python3-cookbook

《Python Cookbook》 3rd Edition Translation
11.7k stars 2.97k forks source link

6.1章小错误 #226

Closed toxically closed 6 years ago

toxically commented 6 years ago

代码:

# Example of reading tab-separated values
with open('stock.tsv') as f:
    f_tsv = csv.reader(f, delimiter='\t')
    for row in f_tsv:
        # Process row
        ...

stock.tsv打错