I have list:
productlinks = ['google.com', 'tes.com', 'lol.com']
name = ['google', 'tes', 'lol']
prices = ['$ 125.000,00', '$ 123.000,00','$ 135.000.000,00']
I want to linked each other and sorted it by the price, so when i sorted it would be look like this:
productlinks = ['tes.com', 'google.com', 'lol.com']
name = ['tes', 'google', 'lol']
prices = ['$ 123.000,00', '$ 125.000,00','$ 135.000.000,00']
I have used zip function to merged it, but i dont know how to sort it by the price.
NOTE: the price in a string.