Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import pandas as pd
- name = input()
- db = pd.read_csv(name, sep='\t')
- for x in db.nlargest(10, 'followers_cnt')[['first_name', 'last_name']].iterrows():
- print(x[1]['first_name'], x[1]['last_name'])
Advertisement
Add Comment
Please, Sign In to add comment