Python - 获取列的数据类型
要获取列的数据类型,请使用info()方法。让我们首先导入所需的库-
import pandas as pd
创建一个具有2列具有不同数据类型的DataFrame-
dataFrame = pd.DataFrame(
{
"Student": ['Jack', 'Robin', 'Ted', 'Marc', 'Scarlett', 'Kat', 'John'],"Roll Number": [ 5, 10, 3, 8, 2, 9, 6]
}
)获取有关数据类型的完整信息-
dataFrame.info()
示例
以下是完整的代码-
import pandas as pd
#创建数据帧
dataFrame = pd.DataFrame(
{
"Student": ['Jack', 'Robin', 'Ted', 'Marc', 'Scarlett', 'Kat', 'John'],"Roll Number": [ 5, 10, 3, 8, 2, 9, 6]
}
)
print"DataFrame ...\n",dataFrame
print"\nInfo and the datatypes of the columns in the dataframe:\n"
#获取数据类型信息
print(dataFrame.info())输出结果这将产生以下输出-
DataFrame ... Roll Number Student 0 5 Jack 1 10 Robin 2 3 Ted 3 8 Marc 4 2 Scarlett 5 9 Kat 6 6 John Info and the datatypes of the columns in the dataframe:RangeIndex: 7 entries, 0 to 6 Data columns (total 2 columns): Roll Number 7 non-null int64 Student 7 non-null object dtypes: int64(1), object(1) memory usage: 184.0+ bytes None
热门推荐
2 医政科祝福语简短
8 怎么说祝福语简短
10 幼儿祝福语大全简短卡片
11 分手祝福语简短短句
12 红颜生日祝福语简短独特
13 许嵩生日祝福语简短
14 简短长辈新年祝福语
15 农民朋友发财祝福语简短
16 老师祝福语简短100字
17 最搞笑生日祝福语简短
18 成长仪式的简短祝福语