Computer >> Máy Tính >  >> Lập trình >> Python

Tìm độ dài của các từ trong một chuỗi Gấu trúc nhất định

Trong nhiệm vụ này, chúng ta sẽ tìm độ dài của các chuỗi trong một chuỗi Pandas. Chúng tôi sẽ sử dụng hàm str.len () trong thư viện Pandas cho mục đích này.

Thuật toán

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.

Mã mẫu

import pandas as pd

series = pd.Series(["Foo", "bar", "London", "Quarantine"])
print("Series: \n", series)

length = series.str.len()
print("Length:\n", length)

Đầu ra

Series:
0           Foo
1           bar
2        London
3    Quarantine
dtype: object
Length:
0     3
1     3
2     6
3    10
dtype: int64