Normalize numpy array columns in python

I have a numpy array where each cell of a specific row represents a value for a feature. I store all of them in an 100*4 matrix. A B C 1000 10 0.5 765 5 0.35 800 7 0.09 Any idea ...