Advertisement
AlexErin1308

Task #3

Mar 8th, 2024
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | Source Code | 0 0
  1. import pandas as pd
  2.  
  3. support = pd.read_csv('/datasets/support_upd.csv')
  4. support_dict = support[['type_message', 'type_id']]#создадим новую таблицу support_dict из столбцов 'type_message', 'type_id'
  5. print(support_dict.head(10))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement