Skip to content

Instantly share code, notes, and snippets.

@salluzziluca
Created November 19, 2021 13:48
Show Gist options
  • Save salluzziluca/888af579262c77f1da25e16c1eabca38 to your computer and use it in GitHub Desktop.
Save salluzziluca/888af579262c77f1da25e16c1eabca38 to your computer and use it in GitHub Desktop.
Leectura de .CSV
def procesar_linea_csv(linea):
nombre, apellido, edad = linea.rstrip('\n').split(',')
return nombre, apellido, edad
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment