“Ramka danych do DICT bez indeksu” Kod odpowiedzi

Ramka danych do DICT bez indeksu

df.to_dict('index')
Cute Cheetah

Dataframe to Dictionary bez indeksu

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

Ramka danych do DICT bez indeksu

df.to_dict('list')
Cute Cheetah

DataFrame to Septionary za pomocą indeksu jako klucza

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

Ramka danych do DICT bez indeksu

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

Odpowiedzi podobne do “Ramka danych do DICT bez indeksu”

Pytania podobne do “Ramka danych do DICT bez indeksu”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu