Mac OSX python没有看到文件

时间:2019-10-09 18:51:23

标签: python macos

我的代码

import csv

file_name = 'sitka_weather_2018_simple.csv'
with open(file_name) as f:
    reader = csv.reader(f)
    header_row = next(reader)
    print(header_row)

从终端启动时发生错误

ivanlebedev@MacBook-Air-Ivan csv_json % python3 highs_lows.py
Traceback (most recent call last):
  File "highs_lows.py", line 4, in <module>
    with open(file_name) as f:
FileNotFoundError: [Errno 2] No such file or directory: 'sitka_weather_2018_simple.csv'

在脚本文件和.csv文件所在的文件夹(csv_js)中启动终端。

Screen shot of the folder

我有Mac操作系统,尝试使用python2和python3。我要求您帮助解决该问题,我无法继续学习该语言。

1 个答案:

答案 0 :(得分:1)

脚本中的CSV文件与屏幕截图中的CSV文件不匹配。

应为sitka_weather_07-2018_simple.csv