You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the second loop there is a slight indentation issue to have the proper form
csvFile = open('editors.csv', 'wt+')
writer = csv.writer(csvFile)
try:
for row in rows:
csvRow = []
for cell in row.findAll(['td', 'th']):
csvRow.append(cell.get_text())
writer.writerow(csvRow) #it should be indented backward to have a proper csv form
finally:
csvFile.close()
The text was updated successfully, but these errors were encountered:
On the second loop there is a slight indentation issue to have the proper form
The text was updated successfully, but these errors were encountered: