Ejemplo: código python para convertir un archivo de texto en un archivo csv
import pandas as pd
read_file = pd.read_csv (r'Path where the Text file is storedFile name.txt')
read_file.to_csv (r'Path where the CSV will be savedFile name.csv', index=None)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)