PythonPandas-インデックス内のすべての要素がTrueであるかどうかを返します
インデックス内のすべての要素がTrueであるかどうかを返すには、 index.all()を使用します パンダのメソッド。
まず、必要なライブラリをインポートします-
import pandas as pd
インデックスの作成-
index = pd.Index([15, 25, 35, 45, 55])
インデックスを表示-
print("Pandas Index...\n",index)
インデックス内のすべての要素がTrueの場合、Trueを返します-
print("\nCheck whether all elements are True...\n",index.all())
例
以下はコードです-
import pandas as pd # Creating the index index = pd.Index([15, 25, 35, 45, 55]) # Display the index print("Pandas Index...\n",index) # Return a tuple of the shape of the underlying data print("\nA tuple of the shape of underlying data...\n",index.shape) # Return the number of elements in the Index print("\nNumber of elements in the index...\n",index.size) # Return True if all the elements in the index are True print("\nCheck whether all elements are True...\n",index.all())の場合はTrueを返します
出力
これにより、次のコードが生成されます-
Pandas Index... Int64Index([15, 25, 35, 45, 55], dtype='int64') A tuple of the shape of underlying data... (5,) Number of elements in the index... 5 Check whether all elements are True... True
-
Python-Pandasインデックスの最小値を返します
パンダインデックスの最小値を返すには、 index.min()を使用します 方法。まず、必要なライブラリをインポートします- import pandas as pd パンダインデックスの作成- index = pd.Index([10.5, 20.4, 40.5, 25.6, 5.7, 6.8, 30.8, 50.2]) パンダのインデックスを表示する- print("Pandas Index...\n",index) 最小値を取得- print("\nMinimum value..\n", index.min()) 例 以下はコードです-
-
Pythonで文字列内のすべての文字の頻度が素数であるかどうかを確認します
文字列sがあるとします。 sの各文字の出現が素数であるかどうかを確認する必要があります したがって、入力がs =apuuppaのような場合、2つのa、3つのp、および2つの uがあるため、出力はTrueになります。 これを解決するには、次の手順に従います- freq:=すべての文字とその頻度を含むマップ freqの各文字について、次のようにします 0で、freq [char]が素数でない場合、 Falseを返す Trueを返す 理解を深めるために、次の実装を見てみましょう- サンプルコード from collections import defaultdict def