How do I add up all of the values of a column in a python array? Ideally I want to do this without importing any additional libraries.
input_val = [[1, 2, 3,
output_val=input_val.sum(axis=0)
this would make the code even simpler I guess