
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
강의 내용을 따라하는데 경고가 뜨네요
<ipython-input-11-c4306c50bac4>:6: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
df.append(doc, ignore_index=True)
중요도가 떨어져서 나중에 라이버리에서 삭제 될 수 도 있는 기능이라는 뜻인것 같은데 맞나요?
이런경우에는 구버전 라이브러리를 설치하는 식으로 해결을 볼 수 있을까요?

그리고
df = pd.DataFrame()
codes = ['AAPL','ABNB','BIDU','META','GOOG','MSFT','TSLA','PYPL','NFLX','NVDA']
for code in codes:
try:
row = add_company(code)
df = df.append(row, ignore_index = True)
except:
print(f'error - {code}')
df
에서는
<ipython-input-122-cc64e90d39c3>:8: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
df = df.append(row, ignore_index = True)
라는 경고가 계속 뜨는데
컨트롤 + m + b 로 다음 줄로 넘어가서
df
를 실행하면 경고가 전혀 안뜨네요 차이가 뭘까요?
