Q. Identify the error in the following code.
import csv
f = open('attendees1.csv')
csv_f = csv.reader()
for row in csv_f:
print(row)
Answer =
Error in line 3 that is there is not parameter present in reader() function.
Answer =
Error in line 3 that is there is not parameter present in reader() function.
Post a Comment
You can help us by Clicking on ads. ^_^
Please do not send spam comment : )