1
0

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 5 years have passed since last update.

次の中からmutableなものをまとめたものとして適切なものを選びなさい

Posted at

#はじめに
この記事はPython3初学者が、DIVE INTO EXAMのPython3エンジニア認定基礎試験の問題を引用し、解答するものです。間違い等があればご教示くださると嬉しいです。

設問

次の中からmutableなものをまとめたものとして適切なものを選びなさい

解答群

  • リスト
  • 該当なし
  • タプルとリスト
  • タプル

正解

  • リスト

解説

リファレンスによると、シーケンスには変更可能(mutable)なものと変更不能(immutable)なものがある。mutable

mutableなもの

  • リスト型(list)
  • 辞書型(dict)
  • bytearray

immutableなもの

  • 数値型(int,float..)
  • 文字列型(str)
  • タプル型(tuple)
  • 論理値型(bool)
  • type(None)

##選択肢について

リスト

正解

該当なし

リストはmutableであるため不正解

タプルとリスト

リストはmutableであるが、タプルはimmutableであるため不正解

タプル

タプルはimmutableであるため不正解

1
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?