I would like to change index[3] for all items by 10% of it's current value.
Anything I have found online has not produced any results. The closest result is below but I couldn't see how to implement.
for line in finalList:
    price = line[3]
    line[3] = float(line[3]) * 1.1
    line[3] = round(line[3], 2)
    print(line[3])
My products.csv looks like so:
Hardware,Hammer,10,10.99
Hardware,Wrench,12,5.75
Food,Beans,32,1.99
Paper,Plates,100,2.59
My code:
def getProductsData():
    productsfile = open('products.csv', 'r')
    # read products file
    productsreader = csv.reader(productsfile)
    products = []
    # break each line apart (unsure of meaning here)
    for row in productsreader:
        for column in row:
            print(column, end = '|')
        # create and append list of the above data within a larger list
        products.append(row)
        # loop through the list and display it's contents
        print()
    # add 10% to price    
    # add another product to your list of lists   
    products.append(['Toddler', 'Millie', '2017', '8.25'])
    print(products)
    # write the contents to a new file
    updatedfile = open('updated_products.csv', 'w')
    for line in products:
        updatedfile.write(','.join(line))
        updatedfile.write(','.join('\n'))
    updatedfile.close()
getProductsData()