Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

การหาความยาวของคำในชุด Pandas ที่กำหนด


ในงานนี้ เราจะหาความยาวของสตริงในชุด Pandas เราจะใช้ฟังก์ชัน str.len() ในไลบรารี Pandas เพื่อจุดประสงค์นี้

อัลกอริทึม

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