excel 有没有人能帮我解决这个问题,我正试图在jupyter笔记本中阅读我的csv文件

juzqafwq  于 2022-11-26  发布在  其他
关注(0)|答案(1)|浏览(203)

输入Pandas为pdpd.read

FileNotFoundError                         Traceback (most recent call last)
Input In [10], in <cell line: 1>()
----> 1 DF = pd.read_csv('~/downloads/world_mortality.csv')

File ~\anaconda3\lib\site-packages\pandas\util\_decorators.py:311, in deprecate_nonkeyword_arguments.<locals>.decorate.<locals>.wrapper(*args, **kwargs)
    305 if len(args) > num_allow_args:
    306     warnings.warn(
    307         msg.format(arguments=arguments),
    308         FutureWarning,
    309         stacklevel=stacklevel,
    310     )
--> 311 return func(*args, **kwargs)

File ~\anaconda3\lib\site-packages\pandas\io\parsers\readers.py:678, in read_csv(filepath_or_buffer, sep, delimiter, header, names, index_col, usecols, squeeze, prefix, mangle_dupe_cols, dtype, engine, converters, true_values, false_values, skipinitialspace, skiprows, skipfooter, nrows, na_values, keep_default_na, na_filter, verbose, skip_blank_lines, parse_dates, infer_datetime_format, keep_date_col, date_parser, dayfirst, cache_dates, iterator, chunksize, compression, thousands, decimal, lineterminator, quotechar, quoting, doublequote, escapechar, comment, encoding, encoding_errors, dialect, error_bad_lines, warn_bad_lines, on_bad_lines, delim_whitespace, low_memory, memory_map, float_precision, storage_options)
    663 kwds_defaults = _refine_defaults_read(
    664     dialect,
    665     delimiter,
   (...)
    674     defaults={"delimiter": ","},
    675 )
    676 kwds.update(kwds_defaults)
--> 678 return _read(filepath_or_buffer, kwds)

File ~\anaconda3\lib\site-packages\pandas\io\parsers\readers.py:575, in _read(filepath_or_buffer, kwds)
    572 _validate_names(kwds.get("names", None))
    574 # Create the parser.
--> 575 parser = TextFileReader(filepath_or_buffer, **kwds)
    577 if chunksize or iterator:
    578     return parser

File ~\anaconda3\lib\site-packages\pandas\io\parsers\readers.py:932, in TextFileReader.__init__(self, f, engine, **kwds)
    929     self.options["has_index_names"] = kwds["has_index_names"]
    931 self.handles: IOHandles | None = None
--> 932 self._engine = self._make_engine(f, self.engine)

File ~\anaconda3\lib\site-packages\pandas\io\parsers\readers.py:1216, in TextFileReader._make_engine(self, f, engine)
   1212     mode = "rb"
   1213 # error: No overload variant of "get_handle" matches argument types
   1214 # "Union[str, PathLike[str], ReadCsvBuffer[bytes], ReadCsvBuffer[str]]"
   1215 # , "str", "bool", "Any", "Any", "Any", "Any", "Any"
-> 1216 self.handles = get_handle(  # type: ignore[call-overload]
   1217     f,
   1218     mode,
   1219     encoding=self.options.get("encoding", None),
   1220     compression=self.options.get("compression", None),
   1221     memory_map=self.options.get("memory_map", False),
   1222     is_text=is_text,
   1223     errors=self.options.get("encoding_errors", "strict"),
   1224     storage_options=self.options.get("storage_options", None),
   1225 )
   1226 assert self.handles is not None
   1227 f = self.handles.handle

File ~\anaconda3\lib\site-packages\pandas\io\common.py:786, in get_handle(path_or_buf, mode, encoding, compression, memory_map, is_text, errors, storage_options)
    781 elif isinstance(handle, str):
    782     # Check whether the filename is to be opened in binary mode.
    783     # Binary mode does not support 'encoding' and 'newline'.
    784     if ioargs.encoding and "b" not in ioargs.mode:
    785         # Encoding
--> 786         handle = open(
    787             handle,
    788             ioargs.mode,
    789             encoding=ioargs.encoding,
    790             errors=errors,
    791             newline="",
    792         )
    793     else:
    794         # Binary mode
    795         handle = open(handle, ioargs.mode)

FileNotFoundError: [Errno 2] No such file or directory: 'C:\\Users\\user/downloads/world_mortality.csv'

最后的结果是我的下载文件中找不到csv文件,谁能帮我找一下问题,我找了这么久都没有用......最后的结果是我的下载文件中找不到csv文件,谁能帮我找一下问题,我找了这么久,但是没有任何帮助.....最后的结果是在我的下载文件中找不到csv文件。谁能帮我找到它的问题吗?我已经试了这么久,但是没有任何帮助.....最后的结果是在我的下载文件中找不到csv文件。谁能帮我找到它的问题吗?我已经试了这么久,但是没有任何帮助.....最后的结果是在我的下载文件中找不到csv文件。谁能帮我找到它的问题吗?我已经试了这么久,但是没有任何帮助.....最后的结果是我在我的下载文件中找不到csv文件。有人能帮我找到它的问题吗?我“我已经试了这么久了,但是没有任何帮助.....最后的结果是我的下载文件中找不到csv文件。谁能帮我找出它的问题。我已经试了这么久了,但是没有任何帮助.....最后的结果是我在我的下载文件中找不到csv文件。有人能帮我找到它的问题吗?我“我已经试了这么久了,但是没有任何帮助.....最后的结果是我的下载文件中找不到csv文件。谁能帮我找出它的问题。我已经试了这么久了,但是没有任何帮助.....最后的结果是我在我的下载文件中找不到csv文件。有人能帮我找到它的问题吗?我“我已经试了这么久了,但是一点用都没有。

72qzrwbm

72qzrwbm1#

你检查过这个文件在python中是否存在了吗?你可以使用exist函数os.path.exists(path)通过os.path来检查。

相关问题