21.09.27 16:27 작성
·
1.5K
1
--------------------------------------------------------------------------- UnicodeDecodeError Traceback (most recent call last) <ipython-input-47-9f2a70a6b775> in <module> 2 ## %ls 3 ----> 4 df_last = pd.read_csv(r"D:\인공지능\파이썬교육\data\주택도시보증공사_전국 평균 분양가격(2019년 12월).csv", encoding="cp949") 5 ## df_last.shape C:\Windows\Anaconda3\lib\site-packages\pandas\io\parsers.py in parser_f(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, dialect, error_bad_lines, warn_bad_lines, delim_whitespace, low_memory, memory_map, float_precision) 674 ) 675 --> 676 return _read(filepath_or_buffer, kwds) 677 678 parser_f.__name__ = name C:\Windows\Anaconda3\lib\site-packages\pandas\io\parsers.py in _read(filepath_or_buffer, kwds) 446 447 # Create the parser. --> 448 parser = TextFileReader(fp_or_buf, **kwds) 449 450 if chunksize or iterator: C:\Windows\Anaconda3\lib\site-packages\pandas\io\parsers.py in __init__(self, f, engine, **kwds) 878 self.options["has_index_names"] = kwds["has_index_names"] 879 --> 880 self._make_engine(self.engine) 881 882 def close(self): C:\Windows\Anaconda3\lib\site-packages\pandas\io\parsers.py in _make_engine(self, engine) 1112 def _make_engine(self, engine="c"): 1113 if engine == "c": -> 1114 self._engine = CParserWrapper(self.f, **self.options) 1115 else: 1116 if engine == "python": C:\Windows\Anaconda3\lib\site-packages\pandas\io\parsers.py in __init__(self, src, **kwds) 1889 kwds["usecols"] = self.usecols 1890 -> 1891 self._reader = parsers.TextReader(src, **kwds) 1892 self.unnamed_cols = self._reader.unnamed_cols 1893 pandas\_libs\parsers.pyx in pandas._libs.parsers.TextReader.__cinit__() pandas\_libs\parsers.pyx in pandas._libs.parsers.TextReader._get_header() pandas\_libs\parsers.pyx in pandas._libs.parsers.TextReader._tokenize_rows() pandas\_libs\parsers.pyx in pandas._libs.parsers.raise_parser_error() UnicodeDecodeError: 'cp949' codec can't decode byte 0x94 in position 23: illegal multibyte sequence
답변 4
0
0
2021. 09. 27. 16:31
안녕하세요.
파일명 뒤에 .csv 가 누락되어 있습니다.
확장자를 대소문자를 맞춰서 작성해 주세요.
그래도 안 된다면 r"경로명.csv" <= 이렇게 따옴표 앞에 r을 써주세요.
r은 raw의 약자로 역슬래시 등의 특수문자에 따라 경로가 잘못 해석되는 것을 방지합니다.
2021. 09. 27. 17:26
엑셀로 여는 것은 문제 없으나 아마 따로 저장하지 않으셨다면 자동저장이 되었을거에요. 그 과정에서 인코딩이 변경되게 됩니다.