Question d’entretien chez NETGEAR

Range vs Xrange What are generators Lists vs Tuples

Réponse à la question d'entretien

Utilisateur anonyme

19 mai 2018

xrange - python 2 specific way to get a generator in python 2 you can get a simple list using range. in python3, range is basically xrange lists are mutable, tuples are immutable. both are iterable collections.