Dictionary
-
Data Structure in PythonDynamicPL/Python 2019. 10. 18. 14:54
1. Overview There are quite a few data structures available. The builtins data structures are lists, tuples, dictionaries, strings, sets, and frozensets. Lists, strings, and tuples are ordered sequences of objects. Unlike strings that contain only characters, list and tuples can contain any type of objects. Lists and tuples are like arrays. Tuples like strings are immutables. Lists are mutables ..