Python Programming - Arrays - Discussion

Discussion Forum : Arrays - General Questions (Q.No. 5)
5.
How do you create an array in Python using the array module?
arr = array.create([1, 2, 3])
arr = array([1, 2, 3])
arr = array.array([1, 2, 3])
arr = create.array([1, 2, 3])
Answer: Option
Explanation:
The array module provides the array() function to create arrays in Python.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.