11
votes
4answers
1k views
Django Sessions
I'm looking at sessions in Django, and by default they are stored in the database. What are the benefits of filesystem and cache sessions and when should I use them?
…
73
votes
Hidden features of Python
enumerate
Wrap an iterable with enumerate and it will yield the item along with it's index.
For example:
>>> a = ['a', 'b', 'c', 'd', 'e'] …
