Created
February 7, 2019 02:51
-
-
Save Ventsislav-Yordanov/9f13269b0a2621a763b9e0e17eb84a73 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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