Pregunta de entrevista de BairesDev

What are the common built-in data structures in Python and what is the syntax for each?

Respuesta de la entrevista

Anónimo

18 dic 2018

Lists (arrays), dictionaries, sets. Lists: Square brackets, indexing with integers. Dictionaries: Curly brackets indexing with strings or any hashable thing.

1