Tech & TIL

'xxx' object is not callable 본문

Trouble shooting

'xxx' object is not callable

Jadon Yang 2022. 5. 9. 16:21

'DataFrame' object is not callable 오류 해결 방법 정리하기

위 오류가 발생하는 이유는 객체를 call했기 때문이다. 쉽게 말해 Dataframe[] 을 해야하는데 Dataframe()으로 소괄호로 작성한다면 위 오류가 발생한다.

d = {'col1': [1, 2], 'col2': [3, 4]}
df = pd.DataFrame(data=d)
df('col1')

Error 발생

해결방법은 아래와 같다.

df['col1']

# Output
# [1,2]
Comments