後で使用するため、ファイル ディレクトリを変数に格納する必要があります。以下のスクリプトでは、内容を印刷したいのですが、TypeError: 'file' object is not callable
.
スクリプト:
posfile = 'C:/Users/name/Desktop/textfile.txt'
csv_data=csv.reader(file(posfile))
count_test = 0
for row in csv_data:
count_test = count_test + 1
print count_test, row