I have 109 csv files that I want to import using a function or a for-loop. So far I have imported the files manually using the following function:
import numpy as np
plain_table1 = np.genfromtxt('File-path\File-name1.csv', delimiter=',')
...
plain_table109 = np.genfromtxt('File-path\File-name109.csv', delimiter=',')
Is there a simpler way to import all the data files without having to type all of them in manually?