타이틀과 내용에 토큰 개수를 알아보자. len()으로 개수를 세서 print()하면 title에는 5개, content에는 125개 항목이 있음을 알 수 있다.
print(len(tokened_title)) print(len(tokened_content))
실행 결과
5 125
타이틀과 내용에 토큰 개수를 알아보자. len()으로 개수를 세서 print()하면 title에는 5개, content에는 125개 항목이 있음을 알 수 있다.
print(len(tokened_title)) print(len(tokened_content))
실행 결과
5 125