Q:

Write a NumPy program to create an array of zeros and three column types (integer, float, character)

0

Write a NumPy program to create an array of zeros and three column types (integer, float, character)

All Answers

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

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')]

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