Answers

Question and Answer:

  Home  Python Developer

⟩ Tell me what Are Different Ways To Create An Empty NumPy Array In Python?

There are two methods which we can apply to create empty NumPy arrays.

☛ The First Method To Create An Empty Array.

import numpy

numpy.array([])

☛ The Second Method To Create An Empty Array.

# Make an empty NumPy array

numpy.empty(shape=(0,0))

 185 views

More Questions for you: