What is the output of the following Python code snippet??
import array  
a = [6, 1, 7, 4, 2, 0]
print(a[-4])
print(a[-2])
print(a[-1])

Posted on by