I am using
genfromtxt('84MHZN01.TBL',delimiter='\t',dtype=None,skip_header=41,skip_footer=2)
to import the data like
[ b'-0.300000 0.00000 9.052297E+00 0.000000E+00 9.052297E+00 0.000000E+00'
b'-7.700000E-02 0.00000 9.066407E+00 0.000000E+00 9.066407E+00 0.000000E+00'
b'0.146000 0.00000 9.107430E+00 0.000000E+00 9.107430E+00 0.000000E+00'
b'0.369000 0.00000 9.168216E+00 0.000000E+00 9.168216E+00 0.000000E+00'
b'0.592000 0.00000 9.241816E+00 0.000000E+00 9.241816E+00 0.000000E+00'
b'0.815000 0.00000 9.319924E+00 0.000000E+00 9.319924E+00 0.000000E+00'
b'1.03800 0.00000 9.395081E+00 0.000000E+00 9.395081E+00 0.000000E+00']
I am try to use delimiter=' ', but not work. Shows error. How could I import the data with separate Tab or space? Also how to remove the b'? Thanks,