+ 1
In below code why dtype:int64. is printed in last in panda of python?
import pandas as pd wine_dict = { 'red_wine': [3, 6, 5], 'white_wine':[5, 0, 10] } sales = pd.DataFrame(wine_dict, index=["adam", "bob", "charles"]) print(sales['white_wine'])
1 Respuesta
0
Zahed Shaikh
dtype:int64 is data type of 'white_wine' .
And 64 is bit size of the type.