i just started using python and i've been trying to read a file the code doesn't return any errors but it shows this message on the debugging screen
<_csv.reader object at 0x035022B0>
i searched but i couldn't find any answers i even tried other sample codes to see if the problem is in my writing but it returned the same message
*Note = the file is in the same directory of the project
this is my code
import csv
with open('nora.csv', mode='r') as CSVFile:
read = csv.reader(CSVFile, delimiter =",")
print(read)
CSVFile.close()
thank you for your help in advance