jupyter如何查看数据类型

avatar
作者
筋斗云
阅读量:2

在jupyter notebook中,可以使用type()函数来查看变量的数据类型。例如:

x = 5 print(type(x))  # 输出:<class 'int'>  y = "hello" print(type(y))  # 输出:<class 'str'>  z = [1, 2, 3] print(type(z))  # 输出:<class 'list'> 

另外,使用df.dtypes属性可以查看DataFrame中每列的数据类型。例如:

import pandas as pd  df = pd.DataFrame({'A': [1, 2, 3], 'B': ['a', 'b', 'c']}) print(df.dtypes) 

这样就可以看到DataFrame中每列的数据类型。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!