データ型
データ型
データ型 とはそのデータがどのような性質をもつかによって分類されたものです。代表的なものとして、文字列(str
)、整数(int
)、浮動小数点数(float
)といったものがあります。データがどのようなデータ型をもつかを調べるには、主に type
関数を使います。
# 文字列
type('Good night, world')
str
# 整数
type(10)
int
# 浮動小数点数
type(10.0)
float
A meaningful and silly blog created by doctoral degree holders for the sake of the world.
データ型 とはそのデータがどのような性質をもつかによって分類されたものです。代表的なものとして、文字列(str
)、整数(int
)、浮動小数点数(float
)といったものがあります。データがどのようなデータ型をもつかを調べるには、主に type
関数を使います。
# 文字列
type('Good night, world')
str
# 整数
type(10)
int
# 浮動小数点数
type(10.0)
float