Skip to content

Instantly share code, notes, and snippets.

@leangaurav
Created May 16, 2019 15:45
Show Gist options
  • Save leangaurav/5729ea333260bfeaa69a5fe1801a1839 to your computer and use it in GitHub Desktop.
Save leangaurav/5729ea333260bfeaa69a5fe1801a1839 to your computer and use it in GitHub Desktop.
A=[ 1 ,2 ,3 ,4 ]
print(A[0])
print(A[1])
print(A[2])
print(A[3])

Output
1
2
3
4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment