fork download
  1. # -*- coding:cp1251 -*-
  2. import pandas as pd
  3. data = pd.DataFrame({'Country':['Ukraine','France','Poland','Sweeden'], 'Rank':[100,80,77,88]})
  4. print(data)
Success #stdin #stdout 2.69s 78924KB
stdin
Standard input is empty
stdout
   Country  Rank
0  Ukraine   100
1   France    80
2   Poland    77
3  Sweeden    88