File size: 401 Bytes
86694c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import csv

# Open the CSV file
with open('InverSynth_00006.wav.csv', 'r') as csvfile:
    reader = csv.reader(csvfile)
    
    # Skip the header row
    next(reader)
    
    # Loop through the rows
    for row in reader:
        # Get the floating-point number from the third column
        value = float(row[2])
        
        # Do something with the value
        print(f"The value is {value}")