AlexErin1308

Task #2

Mar 6th, 2024
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. import pandas as pd
  2. transactions = pd.read_excel('/datasets/ids.xlsx')
  3. transactions['id'] = pd.to_numeric(transactions['id'], errors='coerce')
  4. print(transactions.tail())
Add Comment
Please, Sign In to add comment