I am learning about different functions of NUmpy, And I have a dummy dataset here named as 100-Sales-Records.
Now I want to read it using np.genfromtxt
. My code to read it is
df3 = np.genfromtxt('100 Sales Records.csv', delimiter=',',names=True, dtype=None)
Because it is a 'csv' file and have strings as well as float. Now the Output of
WHich you can see that all strings have b
in front of them. WHat is this b
and how to remove it?