“DataFrame para ditar sem índice” Respostas de código

DataFrame para ditar sem índice

df.to_dict('index')
Cute Cheetah

DataFrame para dicionário sem índice

df.to_dict(orient='records')
Last Air Bender

DataFrame para ditar sem índice

df.to_dict('list')
Cute Cheetah

DataFrame para o dicionário usando o índice como chave

#Use the Dataframe index as the key of the dictionary
df.to_dict('index')
UnAngeloCheSiChiamaTheKing

DataFrame para ditar sem índice

{'Name': ['John', 'Sara', 'John', 'Sara'],
 'Sem': ['Sem1', 'Sem1', 'Sem2', 'Sem2'],
 'Subject': ['Mathematics', 'Biology', 'Biology', 'Mathematics'],
 'Grade': ['A', 'B', 'A+', 'B++']}
Cute Cheetah

Respostas semelhantes a “DataFrame para ditar sem índice”

Perguntas semelhantes a “DataFrame para ditar sem índice”

Procure respostas de código populares por idioma

Procurar outros idiomas de código