Python 配列 tuple

Pythonで配列 tupleを使用するサンプルです。

# -*- coding: Shift_JIS -*

# 構文 , カンマ区切りに宣言
# (オブジェクト, オブジェクト2,……,オブジェクトN)

# 具体例1 要素1つ
tuple = (1,)
print(tuple)

# 具体例2 要素複数
tuple = (1, 2, 3, 4, 5)
print(tuple)

# 要素を1つずつ表示
print("要素を1つずつ表示")
print(tuple[0])
print(tuple[1])
print(tuple[2])
print(tuple[3])
print(tuple[4])

# 一部分の取得
print("一部分の取得")
print(tuple[1:3]) #2文字目、3文字目を表示
print(tuple[1:])  #2文字目以降を表示
print(tuple[:2])  #2文字目以前を表示

# tupleのサイズを取得
print("tupleのサイズを取得")
print(len(tuple))

# tupleの連結
tuple2= (6, 7, 8, 9)

tuple3 = tuple + tuple2
print(tuple3)

# tupleの繰り返し
tuple4 = tuple3 * 3
print(tuple4)

■実行例
1


Bookmark this on Yahoo Bookmark
Bookmark this on Google Bookmarks
Share on LinkedIn
LINEで送る
Pocket

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

次のHTML タグと属性が使えます: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>