Skip to content

Instantly share code, notes, and snippets.

@ivanjx
Created January 7, 2020 08:49
Show Gist options
  • Save ivanjx/b9a39ed0fd90e34865ed633d5d773193 to your computer and use it in GitHub Desktop.
Save ivanjx/b9a39ed0fd90e34865ed633d5d773193 to your computer and use it in GitHub Desktop.
matrix = []
matrix.append([1, 2])
matrix.append([3, 4])
print(matrix[1][0])
# Output:
# 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment