Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm new to Python. How can I read changes needed from rename.csv file, then change naming and value accordingly in my.csv file. If no new value in rename.csv file, default value will be remain. My csv files as below:

rename.csv

     OLD NAME,NEW NAME,NEW VALUE
     AA,BB,22
     CC,DD
     XX,KK,99 

my.csv (before)

    XX,YY,ZZ,AA,CC,EE
    1,2,3,4,5,6
    3,2,1,4,5,7

my.csv (after/expect result)

    KK,YY,ZZ,BB,DD,EE
    99,2,3,22,5,6
    99,2,1,22,5,7
share|improve this question
Have you checked out the csv module? – larsmans May 27 '11 at 0:09
1  
What do you have so far, and how doesn't it work? – Ignacio Vazquez-Abrams May 27 '11 at 0:31

closed as not a real question by George Stocker Jul 16 '12 at 1:53

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.