Guest User

Untitled

a guest
Feb 6th, 2018
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. d = {'1' : 'dsjlskdgj+fdfsd@test.com', '2' : 'qwioept@test.com', '3' : 'dccnvmxcv+fas@test.com', '4':'dqlt@test.com'}
  2.  
  3. test_frame = pd.Series(d)
  4.  
  5. test_frame
  6. Out[6]:
  7. 1 dsjlskdgj+fdfsd@test.com
  8. 2 qwioept@test.com
  9. 3 dccnvmxcv+fas@test.com
  10. 4 dqlt@test.com
  11. dtype: object
  12.  
  13. s = {'1' : 'dsjlskdgj@test.com', '2' : 'qwioept@test.com', '3' : 'dccnvmxcv@test.com', '4':'dqlt@test.com'}
  14.  
  15. test_frame_result = pd.Series(s)
  16.  
  17. test_frame_result
  18. Out[10]:
  19. 1 dsjlskdgj@test.com
  20. 2 qwioept@test.com
  21. 3 dccnvmxcv@test.com
  22. 4 dqlt@test.com
  23. dtype: object
Add Comment
Please, Sign In to add comment