diff --git a/README.md b/README.md index 346c7e7..6be8667 100644 --- a/README.md +++ b/README.md @@ -1653,12 +1653,12 @@ CSV ```python import csv = csv.reader(, dialect='excel', delimiter=',') - = next() # Returns a row as list of strings. + = next() # Returns a row as list of strings. ``` ```python = csv.writer(, dialect='excel', delimiter=',') -.writerow() +.writerow() # Encodes objects using `str()`. .writerows() ``` diff --git a/index.html b/index.html index 42e9709..7ac7281 100644 --- a/index.html +++ b/index.html @@ -1475,10 +1475,10 @@ os.replace(from, to) #CSV
import csv
 <reader> = csv.reader(<file>, dialect='excel', delimiter=',')
-<list>   = next(<reader>)  # Returns a row as list of strings.
+<list>   = next(<reader>)        # Returns a row as list of strings.
 
<writer> = csv.writer(<file>, dialect='excel', delimiter=',')
-<writer>.writerow(<collection>)
+<writer>.writerow(<collection>)  # Encodes objects using `str(<el>)`.
 <writer>.writerows(<coll_of_coll>)
 

Parameters