How can I load or create a loop to load my data composed by the same name but with different numbers {a}dhs{b}... eg., (1dhs2 or 3dhs4 ) using NumPy or pygeostat and then extract the value of the variable to use it (i have 10.000 files). Thanks :)
df1_1 = gs.DataFile('1dhs1.out')
df1_2 = gs.DataFile('1dhs2.out')
...
df3_2 = gs.DataFile('3dhs2.out')
value1_1 = df1_1['value']
value1_2 = df1_2['value']
value1_3 = df1_3['value']
value1_4 = df1_4['value']
...
value4_3 = df1_3['value']
value4_4 = df1_4['value']