Skip to content

Instantly share code, notes, and snippets.

@vihar
Created July 19, 2017 14:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vihar/e9045d7b8a06e8bd8710954d7ae4050a to your computer and use it in GitHub Desktop.
Save vihar/e9045d7b8a06e8bd8710954d7ae4050a to your computer and use it in GitHub Desktop.
world_tour = ["Paris", "New York", "Melbourne", "Swiss"]
print(type(world_tour))
print(world_tour)
print(world_tour[0])
print(world_tour[1])
print(world_tour[-1])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment