【Python入門】要素番号を用いてリスト(配列)の要素を入れ替える方法とは?要素番号を用いてリスト(配列)の要素の入れ替え/更新/変更方法を徹底解説

Python

Pythonのリスト(配列)とは、複数の要素を格納できるデータ型の1つで、要素の順序を保持します。リストは角かっこ [] で囲まれ、カンマ , で区切られた複数の要素を含むことができます。リストの要素には、異なるデータ型のオブジェクトを含むことができます。また、リストは可変(mutable)オブジェクトであり、要素を追加、削除、更新することができます。本記事では、Pythonによる要素番号を用いてリスト(配列)の要素を入れ替える方法を紹介します。

下記の様な内容で悩んでいる/困っている場合に使える方法を参考までにご共有させて頂きます。

・Pythonの場合、どうやって配列の要素の入れ替えをするの?
・Pythonのリスト(配列)は、どの様にリスト(配列)の要素の入れ替え/更新/変更をするのだろうか?

要素番号を用いてリスト(配列)の要素の入れ替え/更新/変更(自作関数)

関数の定義

def replaceElementOfListWithID(input_list: list, input_id: int, input_value) -> list:
    if not (0 <= input_id <= len(input_list)-1): return input_list
    temp_list = input_list.copy()
    temp_list[input_id] = input_value
    return temp_list

使用例1

SampleList = [0,1,2,3,4,5,6,7,8,9]
NewList = replaceElementOfListWithID(SampleList, 1, 999)
print(f"New List:\n{NewList} {type(NewList)}")
New List:
[0, 999, 2, 3, 4, 5, 6, 7, 8, 9] <class 'list'>

使用例2

SampleList = [0,1,2,3,4,5,6,7,8,9]
NewList = replaceElementOfListWithID(SampleList, 20, 999)
print(f"New List:\n{NewList} {type(NewList)}")
New List:
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9] <class 'list'>

まとめ

Pythonのリスト(配列)はPython標準で使えるデータ型であり、Pythonでプログラムする上でよく使うものとなっております。この記事では、Pythonによる要素番号を用いてリスト(配列)の要素を入れ替える方法を紹介しました。ぜひ活用してみてください。

関連検索ワード

How to replace an element of list with index?

関連キーワード

python, 入門, 初心者, リスト, 配列, 要素, 入れ替え, 更新, 変更, list, element, replace, update, edit

This website stores cookies on your computer. These cookies are used to provide a more personalized experience and to track your whereabouts around our website in compliance with the European General Data Protection Regulation. If you decide to to opt-out of any future tracking, a cookie will be setup in your browser to remember this choice for one year.

Accept or Deny