数値型

Python

カテゴリー: Data Structures  閲覧数:299 配信日:2017-12-02 12:36


整数型 / int


整数を値として格納する変数のタイプ
data = 1
data = 1
print(type(data)) #<class 'int'>


浮動小数点型 / float


小数点以下の値を含む数字を値として格納する変数のタイプ
data = 9.9
data = 9.9
print(type(data)) #<class 'float'>




週間人気ページランキング / 6-21 → 6-27
順位 ページタイトル抜粋 アクセス数
1 Python用語 16
2 インポート | インポートシステム 1
2 AttributeError: type object 'datetime.datetime' has no attribute 'datetime' | AttributeError(エラー) 1
2026/6/28 5:05 更新