Skip to content

Instantly share code, notes, and snippets.

@Ventsislav-Yordanov
Created February 7, 2019 02:51
Show Gist options
  • Save Ventsislav-Yordanov/9f13269b0a2621a763b9e0e17eb84a73 to your computer and use it in GitHub Desktop.
Save Ventsislav-Yordanov/9f13269b0a2621a763b9e0e17eb84a73 to your computer and use it in GitHub Desktop.
book = {(1, 10): "Introducton", (11, 15): "Notation and Definitions", (16, 30): "Fundamental Algorithms"}
print(book[(1, 10)])
book = {[1, 10]: "Introducton", [11, 15]: "Notation and Definitions", [16, 30]: "Fundamental Algorithms"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment