## matplotlib顯示中文方法 ```python=! !wget -O TaipeiSansTCBeta-Regular.ttf https://drive.google.com/uc?id=1eGAsTN1HBpJAkeVM57_C7ccp7hbgSz3_&export=download import matplotlib # 改style要在改font之前 # plt.style.use('seaborn') matplotlib.font_manager.fontManager.addfont('TaipeiSansTCBeta-Regular.ttf') matplotlib.rc('font', family='Taipei Sans TC Beta') ```