File size: 292 Bytes
f08eee8 |
1 2 3 4 5 6 7 8 9 10 11 |
import csv
downloadList = open("/home/limmireu/문서/csv/Download_labelFile.csv", "r", encoding="utf8")
downloadList = csv.reader(downloadList)
print("aihubshell -datasetkey 71442 -filekey ", end="")
for row in downloadList:
datasetFileKey = row[2]
print(datasetFileKey, end=",")
|