Advertisement
Guest User

Untitled

a guest
Feb 17th, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. import pandas as pd
  2. df1 = pd.read_csv('boletas_banco merge.csv')
  3. df2 = pd.read_csv('boletas_fxpb merge.csv')
  4.  
  5. df3 = pd.merge(df1,df2,on=("contraparte","data_trade","ativo","preco","vencimento","quantidade"), how="outer", indicator=True)
  6.  
  7. print('*'*100)
  8. print(df3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement