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

Python認定 基礎試験 タプルのメモ

Posted at

Pythonエンジニア認定基礎試験勉強中のメモです📝
この記事はタプルについて。

タプルとは

複数の値を扱うデータ型。
一般的に ('apple', 'banana', 'peach')のようにカンマ区切りの要素を ()囲む。
(※ 実際にはカンマで要素が区切られていればOKなので、()は省略できる)
一度定義されたタプルは、その後に要素の追加、削除、値の変更などはできない。

tuple_1 = (1, 2, 3)

# 既に定義されたタプルを使って、新たにタプルを定義することは可能
tuple_2 = tuple_1 + (4, 5,)

print(tuple_1) # (1, 2, 3)
print(tuple_2) # (1, 2, 3, 4, 5)

タプルの定義方法

# カンマ区切りの要素を括弧で囲む
tuple_3 = ('dog', 'cat', 'mouse')

# ()を省略した形もある
tuple_4 = 'rice', 'bread', 'noodle'

# 要素が一つのときは末尾にカンマをつける
tuple_5 = 'Hokkaido', 

# tuple()関数を使用する
tuple_6 = tuple(['red', 'blue', 'yellow'])
0
0
2

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