File size: 507 Bytes
bac8f2c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import pandas as pd
import csv

def display_csv(csv_file_path):
    # CSV processing
    with open(csv_file_path, newline='', encoding='utf-8') as csvfile:
        reader = csv.DictReader(csvfile)
        rows = list(reader)

    # Display the entire CSV using pandas
    df = pd.DataFrame(rows)
    print("Entire CSV File:")
    print(df['texte'].head(10))

if __name__ == "__main__":
    # Replace 'LIR.csv' with the correct path to your CSV file
    csv_file_path = "LIR.csv"

    display_csv("LIR.csv")