12.20.4 Writer Objects

Writer objects (DictWriter instances and objects returned by the writer() function) have the following public methods:

writerow( row)
Write the row parameter to the writer's file object, formatted according to the current dialect.

writerows( rows)
Write all the rows parameters to the writer's file object, formatted according to the current dialect.

See About this document... for information on suggesting changes.