【Python】 Python ~ 基本編 / タプル ~

■ はじめに

https://dk521123.hatenablog.com/entry/2019/10/12/084943

の続き。
今回は、タプルについて、メモする。

補足:namedtuple (名前付きタプル)

namedtuple (名前付きタプル)については、以下の関連記事を参照のこと

Python ~ namedtuple / 簡易クラス ~
https://dk521123.hatenablog.com/entry/2020/11/10/134233

■ タプル (tuple)

* (...) を使う
* 読み取り専用
* 書換負荷

構文

tuple = (【値1】,【値2】, ... )

a = (10, 20, 30, 40)

■ 比較

* こんなの実際のプログラムでは使わないだろーが、、、

<, >演算子

* 比較して、どれかが真であれば、True。

サンプル

# False
print((1,3,5) < (1,3,4,4))

# True
print((1,3,5) < (1,4,4,4))

# True
print((1,3,5) < (2,3,4,4))

関連記事

Python ~ 基本編 / リスト ~
https://dk521123.hatenablog.com/entry/2019/10/12/084943
Python ~ 基本編 / 辞書 ~
https://dk521123.hatenablog.com/entry/2019/10/24/000000
Python ~ 基本編 / 集合 Set ~
https://dk521123.hatenablog.com/entry/2021/04/02/000000
Python ~ 基本編 / ラムダ lambda ~
https://dk521123.hatenablog.com/entry/2019/09/23/000000
Python ~ 基本編 / 文字列 ~
https://dk521123.hatenablog.com/entry/2019/10/12/075251
Python ~ namedtuple / 簡易クラス ~
https://dk521123.hatenablog.com/entry/2020/11/10/134233