질문있어요!
해결하셨을 거 같긴한데, 혹시 도움이 될까 싶어 댓글 남겨요. 저도 웹크롤링한 다음 df.info로 보면 age, number가 int가 아니라 object로 나오더라구요. 그래서 전 웹크롤링해서 받는 코드를 int()로 감싸 int64로 형태를 변환시켰습니다. 이렇게 하면 int64로 age 내 value 형태가 변해서 위 에러가 없어질겁니다. 아래에 뷰티풀숲으로 코딩한 내용 중 int로 감싼 내용만 복붙할게요~ for i in player_info: a = i.find_all('td') ranking = int(a[0].text) name = a[3].text position = a[4].text age = int(a[5].text) nation = a[6].img['alt'] team = a[7].img['alt'] value = a[8].text.strip() player_list.append([ranking, name, position, age, nation, team, value]) time.sleep(2)