First day!
Congratulations! It's your first day as a data scientist in the company! Your first project is to build a model for predicting if a movie will get a positive or negative review.
You need to start exploring your dataset. In order to create a function that will scan each movie review, you want to know how many characters every string has and print the result out together with a statement that indicate what the number refers to. To test if your function works correctly, you are going to start by analyzing only one example.
The text of one movie review has been already saved in the variable movie. You can use print(movie) to view the variable in the IPython Shell.
이 연습은 강의의 일부입니다
Regular Expressions in Python
실습형 인터랙티브 연습
이 예제를 이 샘플 코드를 완성하여 풀어보세요.
# Find characters in movie variable
length_string = ____