import numpy as np
import pandas as pd
import shapefile as shp
import matplotlib.pyplot as plt
import seaborn as sns
shp_path = 'seoul\seoul.shp'
sf = shp.Reader(shp_path)
sf.records()[1]
最后我得到了这个错误 UnicodeDecodeError: 'utf-8' codec can't decode byte 0xba in position 0: invalid start byte
我想怎么解决这个问题