Array Declaration in Python: Which of the following is the correct syntax to declare an array in Python?
array = [1, 2, 3]
int[3] array = {1, 2, 3}
array[] = {1, 2, 3}
array(1, 2, 3)

Data Structures and Algorithms Exercises are loading ...