概要
Pythonで「タプルを別のタプルと結合して新しいタプルを作成する」の動作を確認してみました。以下のページを参考にしました。
実装
以下のファイルを作成しました。
sample.py
tuple1 = ("A", "B", "C")
tuple2 = ("D", "E")
tuple3 = tuple1 + tuple2
print(tuple3)
redtuple = ("Orange", "Strawberry")
yellowtuple = ("Lemon", "Banana", "Grapefruit")
# redtuple と yellowtuple を結合する
fruittuple = redtuple + yellowtuple
print(fruittuple)
以下のコマンドを実行しました。
$ python3 sample.py
('A', 'B', 'C', 'D', 'E')
('Orange', 'Strawberry', 'Lemon', 'Banana', 'Grapefruit')
まとめ
何かの役に立てばと。