R
Q. What is the output of the following Python code?
Code:
import array
a = array.array('i', [1, 2, 3])
print(a[0])
a = array.array('i', [1, 2, 3])
print(a[0])
- Correct Answer - Option(B)
- Views: 156
- Filed under category Python
Discusssion
Login to discuss.