Python Language
Lecture et écriture CSV
Recherche…
Ecrire un fichier TSV
Python
import csv
with open('/tmp/output.tsv', 'wt') as out_file:
tsv_writer = csv.writer(out_file, delimiter='\t')
tsv_writer.writerow(['name', 'field'])
tsv_writer.writerow(['Dijkstra', 'Computer Science'])
tsv_writer.writerow(['Shelah', 'Math'])
tsv_writer.writerow(['Aumann', 'Economic Sciences'])
Fichier de sortie
$ cat /tmp/output.tsv
name field
Dijkstra Computer Science
Shelah Math
Aumann Economic Sciences
En utilisant des pandas
Ecrivez un fichier CSV à partir d'un dict
ou d'un DataFrame
.
import pandas as pd
d = {'a': (1, 101), 'b': (2, 202), 'c': (3, 303)}
pd.DataFrame.from_dict(d, orient="index")
df.to_csv("data.csv")
Lisez un fichier CSV en tant que DataFrame
et convertissez-le en dict
:
df = pd.read_csv("data.csv")
d = df.to_dict()
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow