Advertisement
nahgloshii

make a list

Nov 28th, 2023
913
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. import numpy as np
  2. csv_files = np.genfromtxt(r'C:\Noncloud\RSF_2021.csv', delimiter=',', dtype=int)
  3. top_row = csv_files[1:].tolist()
  4.  
  5. print(len(top_row))
  6.  
  7. #print(top_row)
  8.  
  9. for apn8 in top_row:
  10.    print(apn8)
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement