Python
 Computer >> コンピューター >  >> プログラミング >> Python

特定のパンダシリーズの単語の長さを見つける


このタスクでは、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

  1. パンダシリーズの平均を印刷する

    Pandasライブラリのmean()関数を使用して、級数の平均を見つけることができます。 アルゴリズム Step 1: Define a Pandas series. Step 2: Use the mean() function to calculate the mean. Step 3: Print the mean. サンプルコード import pandas as pd series = pd.Series([10,20,30,40,50]) print("Pandas Series: \n", series) series_mean = series.mean

  2. Pythonでプログラムを作成して、特定のシリーズの文字列の最大長を見つけます

    入力 − このようなシリーズ[「1」、「2」、「11」、「ザクロ」、「3」]があり、文字列の最大長が「ザクロ」であるとします。 解決策 これを解決するために、以下のアプローチに従います。 シリーズを定義する maxlenの初期値を0に設定します 「maxstr」値を最初は空の文字列に設定します。 forループを作成し、シリーズのすべての値に1つずつアクセスし、次のように長さに基づいて値を比較するif条件を作成します- for i in res:    if(len(i)>maxlen):       ma