In below code why dtype:int64. is printed in last in panda of python? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 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'])

7th Jul 2021, 2:10 AM
Zahed Shaikh
Zahed Shaikh - avatar
1 Antwort
0
Zahed Shaikh dtype:int64 is data type of 'white_wine' . And 64 is bit size of the type.
7th Jul 2021, 3:56 AM
˜”*°•.˜”*°• Mohan 333 •°*”˜.•°*”˜
˜”*°•.˜”*°• Mohan 333 •°*”˜.•°*”˜ - avatar