“Leer un archivo CSV en Python” Código de respuesta

Python Leer CSV

# pip install pandas 
import pandas as pd

# Read the csv file
data = pd.read_csv('data.csv')

# Print it out if you want
print(data)
Random boi

Leer un archivo CSV en Python

import csv

# open the file
with open('csvfile.csv' , 'r') as csvfile:
    # create the object of csv.reader()
    csv_file_reader = csv.reader(csvfile,delimiter=',')
    for row in csv_file_reader:
        print(row)  
Pythonist

Python Leer Archivo CSV

import csv
with open('file_csv.csv', newline='') as file:
    reader = csv.reader(file)
    for row in reader:
        print(row)
Filthy Fox

CSV Python Write

import csv

with open('names.csv', 'w') as csvfile:
    fieldnames = ['first_name', 'last_name']
    writer = csv.DictWriter(csvfile, fieldnames=fieldnames)

    writer.writeheader()
    writer.writerow({'first_name': 'Baked', 'last_name': 'Beans'})
    writer.writerow({'first_name': 'Lovely', 'last_name': 'Spam'})
    writer.writerow({'first_name': 'Wonderful', 'last_name': 'Spam'})
Arrogant Addax

Importar archivo CSV en Python

import pandas as pd

df = pd.read_csv (r'Path where the CSV file is stored\File name.csv')
print (df)
Yawning Yacare

Cómo leer un archivo CSV en Python

import csv
with open('some.csv', newline='') as f:
    reader = csv.reader(f)
    for row in reader:
        print(row)
Gaming Computerist

Respuestas similares a “Leer un archivo CSV en Python”

Preguntas similares a “Leer un archivo CSV en Python”

Más respuestas relacionadas con “Leer un archivo CSV en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código