Advertisement
Guest User

Untitled

a guest
Feb 16th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. with open('tab_id_HomeAwayScores_Over_Under_3_5_AWAY3.csv', 'r') as f:
  2. reader = csv.reader(f)
  3. your_list_12 = list(reader)
  4. with open('tab_id_Match_Result.csv', 'r') as f:
  5. reader = csv.reader(f)
  6. your_list_13 = list(reader)
  7.  
  8. print("***********************************************************************************************************************************************************************************************************************************")
  9. df = pd.DataFrame({ #'ID' : your_list[0][0],
  10. #'WK' : your_list[0][1],
  11. 'H' : your_list_13[0][2:12],
  12. 'D__' : your_list_13[0][12:22],
  13. 'A' : your_list_13[0][22:32],
  14. 'GG__' : your_list[0][2:12],
  15. 'NG__' : your_list[0][12:22],
  16. 'OV15' : your_list_0[0][2:12],
  17. 'UN15' : your_list_0[0][12:22],
  18. 'Ov25' : your_list_2[0][2:12],
  19. 'UN25' : your_list_2[0][12:22],
  20. 'OV35' : your_list_3[0][2:12],
  21. 'UN35' : your_list_3[0][12:22],
  22. 'OV45' : your_list_4[0][2:12],
  23. 'UN45' : your_list_3[0][12:22],
  24. 'H05' : your_list_5[0][2:12],
  25. 'hu5' : your_list_5[0][12:22],
  26. 'A05' : your_list_6[0][2:12],
  27. 'au5' : your_list_6[0][12:22],
  28. 'H15' : your_list_7[0][2:12],
  29. 'h15' : your_list_7[0][12:22],
  30. 'A15' : your_list_8[0][2:12],
  31. 'a15' : your_list_8[0][2:12],
  32. 'H25' : your_list_10[0][2:12],
  33. 'h25' : your_list_10[0][12:22],
  34. 'A25' : your_list_9[0][2:12],
  35. 'a25' : your_list_9[0][12:22],
  36. 'H35' : your_list_11[0][2:12],
  37. 'h35' : your_list_11[0][12:22],
  38. 'A35' : your_list_12[0][2:12],
  39. 'a35' : your_list_12[0][12:22]
  40. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement