# File: datatype.py #整数 print(type(123)) #浮動小数点 print(type(0.123)) #文字列(Build-in str class) print(type('1,2,3')) #リスト print(type([1,2,3])) #タプル print(type((1,2,3))) #集合(set) print(type({1,2,3})) #辞書(dict) print(type({'1':1,'2':2,'3':3}))