Django - Caching
Given this code snippet, what will be the output?
from django.core.cache import cache
cache.set('item', 'value', timeout=10)
cache.delete('item')
result = cache.get('item')
print(result)