mfgnik

Untitled

Apr 23rd, 2020
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. import pandas as pd
  2. name = input()
  3. db = pd.read_csv(name, sep='\t')
  4. for x in db.nlargest(10, 'followers_cnt')[['first_name', 'last_name']].iterrows():
  5. print(x[1]['first_name'], x[1]['last_name'])
Advertisement
Add Comment
Please, Sign In to add comment