Write a NumPy program to create an array of zeros and three column types (integer, float, character)
import numpy as np x = np.zeros((3,), dtype=('i4,f4,a40')) new_data = [(1, 2., "Albert Einstein"), (2, 2., "Edmond Halley"), (3, 3., "Gertrude B. Elion")] x[:] = new_data print(x)
Sample Output:
[(1, 2., b'Albert Einstein') (2, 2., b'Edmond Halley') (3, 3., b'Gertrude B. Elion')]
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer