1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Python】ミュータブルとイミュータブル

Posted at

ミュータブルとイミュータブルについて

すぐ忘れてしまうので、軽くまとめてみた:raised_hands_tone1:


オブジェクトの内容が変えられるか変えられないかの違い。
ミュータブル(可変)・・・変えられる
イミュータブル(不変)・・・変えられない

ミュータブル イミュータブル
list(リスト) str(文字列)
set(セット) int(整数型)
dictionary(辞書) tuple(タプル)
float(浮動小数点型)
complex(複素数型)
range
frozenset
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?