#P3701. Py1-2-1 SM

Py1-2-1 SM

题目描述

写一个 Python 程序,能判断数据的类型,仅需识别:整数(int)、浮点数(float)、字符串(str)、布尔值(bool)这 4 种基础类型。

输入格式

无输入。

输出格式

一行,表示类型。

2.5
<class 'float'>
True
<class 'bool'>