इस कार्य में, हम पंडों की श्रृंखला में तारों की लंबाई पाएंगे। हम इस उद्देश्य के लिए पंडों की लाइब्रेरी में 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