「Python」リスト、タプル、range型の変数を使うサンプル

2020年12月10日

構文
リスト変数名 =[xxx,xxx]
タプル変数名 =(xxx,xxx)
rang変数名 =range(数値)
サンプルコード

#!/usr/bin/ruby
# -*- coding: UTF-8 -*-

#リスト
cftA = [11, 22, 33,44,55]
print("listの要素: ",cftA)
print("listのタイプ:",type(cftA))

#タプル
cftB = ('TestA', 'Test02', 'Amond','CC02')
print("tupleの要素:",cftB)
print("tupleのタイプ: ",type(cftB))

#range型
cftC = range(12)
print("range型: ",cftC)
print("rangeのタイプ: ",type(cftC))

実行結果
>python test.py
listの要素: [11, 22, 33, 44, 55]
listのタイプ: <class 'list’>
tupleの要素: ('TestA’, 'Test02’, 'Amond’, 'CC02’)
tupleのタイプ: <class 'tuple’>
range型: range(0, 12)
rangeのタイプ: <class 'range’>

Python

Posted by arkgame