Guest User

Untitled

a guest
Jan 21st, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. import pandas as pd
  2. import csv
  3.  
  4. df_old=pd.read_csv(os.path.join(somepath,'old_names.csv')
  5. df_new=pd.read_csv(os.path.join(somepath,'new_names.csv')
  6. df_names=df_new.join(df_old)
Add Comment
Please, Sign In to add comment