Skip to content

Instantly share code, notes, and snippets.

@javieroot
Forked from Fhernd/guardar-csv.py
Created August 13, 2019 20:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save javieroot/0f30468355d600861243f1012ac5977f to your computer and use it in GitHub Desktop.
Save javieroot/0f30468355d600861243f1012ac5977f to your computer and use it in GitHub Desktop.
Guarda datos de un DataFrame en formato CSV en Python.
import pandas as pd
# Definición diccionario:
diccionario = {'pares': [0, 2, 4, 6], 'impares': [1, 3, 5, 7]}
# Creación DataFrame:
df_numeros = pd.DataFrame(diccionario)
# Guarda datos en CSV:
df_numeros.to_csv('numeros.csv', header=False, index=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment