a = 120
type(a)
int →integer の略 integer ... 整数
b = 5.3
type(b)
c = 45j
type(c)
d = "松尾"
type(d)
f = True
type(f)
bool = boolean boolean ... 論理型
e = [10,20,30]
type(e)
g = {}
type(g)
dict = dictionary dictionary ... 辞書
r = ()
type(r)