在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中每列的數據類型。