Q:

Write a NumPy program to convert a NumPy array into a csv file

0

Write a NumPy program to convert a NumPy array into a csv file.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

import numpy data = numpy.asarray([ [10,20,30], [40,50,60], [70,80,90] ])
 numpy.savetxt("test.csv", data, delimiter=",")

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now