mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-24 06:07:19 -04:00
10 lines
No EOL
288 B
Python
Executable file
10 lines
No EOL
288 B
Python
Executable file
import csv
|
|
|
|
with open('iladata.csv', 'r') as csvfile:
|
|
csvreader = csv.reader(csvfile, delimiter=',', quotechar='|')
|
|
for row in csvreader:
|
|
if (row[5] == '1'):
|
|
print(row[3])
|
|
if (row[6] == '1'):
|
|
print(row[4])
|
|
# print(', '.join(row[])); |