Guess the output of the code snippet??
import array  
a = [2, 4, 6, 8, 10, 12]
print(a[0])
print(a[-5])
print(a[-1])
print(a[0])


Posted on by