Domanda di colloquio di NETGEAR

Range vs Xrange What are generators Lists vs Tuples

Risposta di colloquio

Anonimo

19 mag 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.