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

Python –K値の次のN要素


K値から次のN個の要素を取得する必要がある場合は、単純な反復が使用されます。

以下は同じのデモンストレーションです-

my_list = [31, 24, 46, 18, 34, 52, 26, 29]
print("The list is :")
print(my_list)
K = 2
print("The value of K is :")
print(K)
N = 3
print("The value of N is :")
print(N)
for index in range(K):
   my_list[index] = N
print("The result is :")
print(my_list)

出力

The list is :
[31, 24, 46, 18, 34, 52, 26, 29]
The value of K is :
2
The value of N is :
3
The result is :
[3, 3, 46, 18, 34, 52, 26, 29]

説明

  • リストが定義され、コンソールに表示されます。

  • KとNの値が定義され、コンソールに表示されます。

  • リストはKの範囲で繰り返され、Nの値には特定のインデックスの要素が割り当てられます。

  • これは、コンソールに表示される出力です。


  1. リストからN個の最大の要素を見つけるPythonプログラム

    整数リストが与えられた場合、私たちのタスクはリスト内で最大のN個の要素を見つけることです。 例 Input : [40, 5, 10, 20, 9] N = 2 Output: [40, 20] アルゴリズム Step1: Input an integer list and the number of largest number. Step2: First traverse the list up to N times. Step3: Each traverse find the largest value and store it in a new list. 例 def Nnumbere

  2. JSON入力からPython辞書を作成するにはどうすればよいですか?

    Pythonのjsonモジュールを使用してJSONファイルを解析できます。このモジュールはjsonを解析し、それをdictに入れます。その後、通常のdictのようにこれから値を取得できます。たとえば、次のコンテンツを持つjsonがある場合 {    "id": "file",    "value": "File",    "popup": {       "menuitem": [ &n