w3resource

Python: Write (without writing separate lines between rows) and read a CSV file with specified delimiter

Python module: Exercise-6 with Solution

Write a Python program to write (without writing separate lines between rows) and read a CSV file with a specified delimiter. Use csv.reader

Sample Solution:

Python Code:

import csv     
fw = open("test.csv", "w", newline='')
writer = csv.writer(fw, delimiter = ",")
writer.writerow(["a","b","c"])
writer.writerow(["d","e","f"])
writer.writerow(["g","h","i"])
fw.close()
 
fr = open("test.csv", "r")
csv = csv.reader(fr, delimiter = ",")
for row in csv:
  print(row) 
fr.close()

Sample Output:

['a', 'b', 'c']
['d', 'e', 'f']
['g', 'h', 'i']

Flowchart:

Flowchart: Write (without writing separate lines between rows) and read a CSV file with specified delimiter.

Python Code Editor:


Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to skip the headers of a given CSV file.
Next: Write a Python program to write dictionaries and a list of dictionaries to a given CSV file.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/modules/python-module-csv-exercise-6.php