CSV in Python

Lesen Sie Daten aus der CSV-Datei mit Python

(python3)

import csv
csvfile = open("filename", 'rt')
contents = csv.reader(csvfile, delimeter=',')
    #Lesen Sie den Wert des Trennzeichens als Trennzeichen.
for row in contents:
    """
Auch wenn der Inhalt so ausgegeben wird, wie er ist, bleibt der Inhalt der Datei erhalten
Da es nicht ausgegeben wird, wird jede Zeile abgerufen.
    """
    print(row)

Zum Beispiel

Der Inhalt des Dateinamens

,A,B,C,D,E
1,234,513,25345,5243,52
2,513,52345,523452,5234,45
3,31,5432,54,63,63

Wenn ja, Wenn Sie den Code wie folgt schreiben,

import csv
import numpy as np
csvfile = open("filename", 'rt')
contents = csv.reader(csvfile, delimiter=',')
array = np.array( [ row for row in contents ] )
array = array[1:, 1:]
print(array)

Das folgende Ausgabeergebnis wird erhalten.

[['234' '513' '25345' '5243' '52']
 ['513' '52345' '523452' '5234' '45']
 ['31' '5432' '54' '63' '63']]

Recommended Posts

CSV in Python
Verschieben von CSV-Dateien mit Python Teil 1
Quadtree in Python --2
Python in der Optimierung
CURL in Python
Metaprogrammierung mit Python
Python 3.3 mit Anaconda
Geokodierung in Python
SendKeys in Python
Metaanalyse in Python
Unittest in Python
Epoche in Python
Zwietracht in Python
Deutsch in Python
DCI in Python
Quicksort in Python
nCr in Python
Plink in Python
Konstante in Python
FizzBuzz in Python
SQLite in Python
Schritt AIC in Python
LINE-Bot [0] in Python
Reverse Assembler mit Python
Reflexion in Python
Konstante in Python
nCr in Python.
Format in Python
Scons in Python 3
Puyopuyo in Python
Python in Virtualenv
PPAP in Python
Quad-Tree in Python
Reflexion in Python
Chemie mit Python
Hashbar in Python
DirectLiNGAM in Python
LiNGAM in Python
In Python reduzieren
In Python flach drücken
Dateneingabe / -ausgabe in Python (CSV, JSON)
Sortierte Liste in Python
Clustertext in Python
AtCoder # 2 jeden Tag mit Python
Täglicher AtCoder # 6 in Python
Täglicher AtCoder # 18 in Python
Bearbeiten Sie Schriftarten in Python
Singleton-Muster in Python
Dateioperationen in Python
Lesen Sie DXF mit Python
Täglicher AtCoder # 53 in Python
Tastenanschlag in Python
Verwenden Sie config.ini mit Python
Täglicher AtCoder # 33 in Python
Löse ABC168D in Python
Logistische Verteilung in Python
LU-Zerlegung in Python
Ein Liner in Python