이 작업에서는 Pandas 시리즈의 문자열 길이를 찾습니다. 이를 위해 Pandas 라이브러리의 str.len() 함수를 사용할 것입니다.
알고리즘
Step 1: Define a Pandas series of string. Step 2: Find the length of each string using the str.len() function. Step 3: Print the results.
예시 코드
import pandas as pd series = pd.Series(["Foo", "bar", "London", "Quarantine"]) print("Series: \n", series) length = series.str.len() print("Length:\n", length)
출력
Series: 0 Foo 1 bar 2 London 3 Quarantine dtype: object Length: 0 3 1 3 2 6 3 10 dtype: int64