I want to Create Csv from Excel but only with two specific columns.
csv_file = open(csv_file_path, 'w+')
wr = csv.writer(csv_file, quoting=csv.QUOTE_ALL)
for row_num in xrange(sh.nrows):
wr.writerow(sh.row_values(row_num))
This Script is Writing all rows of sh sheet into Csv file, i want to write only specific columns into my csv with Header "Id" and "Price" .??