Yan Shi's "Basics of Digital Electronic Technology" 5th Edition Notes and Answers to Exercises

import csv

def write_csv_file(rows = [], user_file_name = 'index'):
    with open(user_file_name + '.csv', 'w', newline='') as csv_file:
        writer = csv.writer(csv_file)
        writer.writerows(rows)
    print('Writing to ' + user_file_name + '.csv'+ ' has compeleted')


if __name__ == "__main__":
	rows = ['Item','name','quantity']
	user_parameter['file_name'] = 'text'
	write_csv_file(rows, user_parameter['file_name'])

The above is python writing .csv code, click the link for the source file.

Link: https://pan.baidu.com/s/18LoXby9w_Efn3IwWSipoFw

Extraction code: solr

Guess you like

Origin blog.csdn.net/m0_46570951/article/details/107006845