jupyter如何查看数据类型

1372
2024/6/17 16:15:08
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

在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中每列的数据类型。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: jupyter导入py包的方法是什么