
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
숙제 시작하자마자 문제가 생겼습니다! ㅠㅠ
company = yf.Ticker('TSLA')
df = company.balancesheet.loc[['Cash And Cash Equivalents']]
df.colums = (['2021','2020','2019'])
여기까지 했는데
판다스에서는 수정이 안된다는 오류 내용 같은데.. 왜 일까요..?

<ipython-input-83-099fdfa79477>:5: UserWarning: Pandas doesn't allow columns to be created via a new attribute name - see https://pandas.pydata.org/pandas-docs/stable/indexing.html#attribute-access
df.colums = (['2021','2020','2019'])
['2021', '2020', '2019']
