Error in reading a file

i m trying to attach ss but it’s not working idk why…

error is :
UnicodeDecodeError Traceback (most recent call last)
Cell In[29], line 1
----> 1 movie_title = pd.read_csv(‘ml-100k/u.item’, header = None, delimiter=’|’)

File ~\AppData\Roaming\Python\Python311\site-packages\pandas\io\parsers\readers.py:912, in read_csv(filepath_or_buffer, sep, delimiter, header, names, index_col, usecols, 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, date_format, dayfirst, cache_dates, iterator, chunksize, compression, thousands, decimal, lineterminator, quotechar, quoting, doublequote, escapechar, comment, encoding, encoding_errors, dialect, on_bad_lines, delim_whitespace, low_memory, memory_map, float_precision, storage_options, dtype_backend)
899 kwds_defaults = _refine_defaults_read(
900 dialect,
901 delimiter,
(…)
908 dtype_backend=dtype_backend,
909 )
910 kwds.update(kwds_defaults)
–> 912 return _read(filepath_or_buffer, kwds)