タイトル: 型
Pythonの型の記事です。
//型を網羅していないので追記をお願いします。
【Pythonの型一覧】
| 型名 | 内容 | 例 |
|---|---|---|
| int | 整数値(符号あり) | 100 |
| float | 浮動小数点(符号あり) |
1.0 |
| str | 文字列 |
"abc" |
| bool | 真偽値。true もしくは false。 |
1==1 |
【型の確認プログラム】
print(type(100));
print(type(1.0));
print(type("abc"));
print(type(1==1));
【出力結果】
<class 'int'>
<class 'float'>
<class 'str'>
<class 'bool'>
