I have a csv file like:
id ,age ,type ,destination
1,10,20     ,Paris
   
2,20,50      ,Canada
3,10,23     ,London
After type and destination values we have space. I want to remove it and my out put will be:
1,10,20,paris   
2,20,50,canada
3,10,23,london
How can I do it by python?