I have two list
priceI = ['2,', '1,', '3,', '1,']
PirceII = ['49', '99', '19', '09']
I want to create a new list
Price = ['2,49', '1,99', '3,19', '1,09']
How can I realise this? And how can I realise this with Numpy?
I also want to calculate after with these prices, do I need to convert the ,
with a decimal .
?
Thanks for your help!