Concept Flow - Array creation (array, arange, linspace)
Start
Choose method
array()
Create array
Output numpy array
End
You start by choosing one of three methods to create a numpy array: array() for fixed lists, arange() for ranges with steps, or linspace() for evenly spaced numbers. Each creates an array output.