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

Pythonでプログラムを作成して、シリーズ内のすべての要素のデフォルトの浮動分位値を計算します


入力

シリーズとデフォルトのフロート分位数があると仮定します

value is 3.0

解決策

これを解決するには、以下の手順に従います-

  • シリーズを定義する

  • 分位数のデフォルト値.5を系列に割り当て、結果を計算します。以下に定義されています

data.quantile(.5)

完全な実装を見て、理解を深めましょう-

import pandas as pd
l = [10,20,30,40,50]
data = pd.Series(l)
print(data.quantile(.5))

出力

30.0

  1. 線形探索のためのPythonプログラム

    この記事では、線形検索とPython3.xでの実装について学習します。またはそれ以前。 アルゴリズム Start from the leftmost element of given arr[] and one by one compare element x with each element of arr[] If x matches with any of the element, return the index value. If x doesn’t match with any of elements in arr[] , return -1 or element no

  2. べき乗剰余のためのPythonプログラム

    x、y、zの3つの数値が与えられた場合、私たちのタスクは(x ^ y)%zを計算することです 例 Input: x = 2, y = 3, p = 3 Output: 2 説明 :2 ^ 3%3 =8%3=2。 アルゴリズム Step 1: Input three numbers. Step 2: then we use pow() to calculating power and % for modular. Step 3: display result. サンプルコード x = int(input(Enter First Value ::>)) y = int(inpu