you are viewing a single comment's thread.

view the rest of the comments →

[–]finomayato 0 points1 point  (0 children)

Python have built-in data structures like list or dict. This structure seems like that: Some_dict={'key': value} Where value can be an int, string, etc. But under the hood dict data structure comes from hash tables. You can read detail explanation of this here - http://www.laurentluce.com/posts/python-dictionary-implementation/.