Python Write CSV FileCSV FileA CSV stands for “comma-separated values”, which is defined as a simple file format that uses specific structuring to arrange tabular data. It stores tabular data such as spreadsheet or database in plain text and has a standard format for data interchange. The CSV file opens into the excel sheet, and the rows and columns data define the standard format. Python CSV Module FunctionsThe CSV module work is to handle the CSV files to read/write and get data from specified columns. There are different types of CSV functions, which are as follows:
Writing CSV FilesWe can also write any new and existing CSV files in Python by using the csv.writer() module. It is similar to the csv.reader() module and also has two methods, i.e., writer function or the Dict Writer class. It presents two functions, i.e., writerow() and writerows(). The writerow() function only write one row, and the writerows() function write more than one row. It is defined as a construct that allows you to create, store, and re-use various formatting parameters. It supports several attributes; the most frequently used are:
Let’s write the following data to a CSV File. Example –Output: Writing complete It returns the file named as ‘Python.csv’ that contains the following data: Write a CSV into a DictionaryWe can also use the class DictWriter to write the CSV file directly into a dictionary. A file named as python.csv contains the following data: Parker, Accounting, November Smith, IT, October Example –Output: emp_name,dept,birth_month Parker,Accounting,November Smith,IT,October Writing CSV Files Using PandasPandas is defined as an open source library which is built on the top of Numpy library. It provides fast analysis, data cleaning and preparation of the data for the user. It is as easy as reading the CSV file using pandas. You need to create the DataFrame, which is a two-dimensional, heterogeneous tabular data structure and consists of three main components- data, columns, and rows. Example –Output: Employee, Hired, Salary, Sick Days John Idle, 2014-03-15, 50000.0,10 Smith Gilliam, 2015-06-01, 65000.0,8 Parker Chapman, 2014-05-12, 45000.0,10 Jones Palin, 2013-11-01, 70000.0,3 Terry Gilliam, 2014-08-12 , 48000.0,7 Michael Palin, 2013-05-23, 66000.0,8 |
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/263679.html