Q:

Write a NumPy program to create an empty and a full array

0

Write a NumPy program to create an empty and a full array.

All Answers

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

import numpy as np
# Create an empty array
x = np.empty((3,4))
print(x)
# Create a full array
y = np.full((3,3),6)
print(y)

Sample Output:

[[  6.93643969e-310   8.76783124e-317   6.93643881e-310   6.79038654e-31
3]                                                                      
 [  2.22809558e-312   2.14321575e-312   2.35541533e-312   2.42092166e-32
2]                                                                      
 [  7.46824097e-317   9.08479214e-317   2.46151512e-312   2.41907520e-31
2]]                                                                     
[[6 6 6]                                                                
 [6 6 6]                                                                
 [6 6 6]]

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