help('modules')
# Import a module from the list of modules
import <name of module>
# Get the available class/functions of the module
dir(<name of module>)
# Get the documentation of the class/method of the module
help(<name of module>.<class/method in module>)
@phpdude, попробую, но надо сначала потетсить скорость. Я обычно в таких ситуациях юзаю
data.setdefault('something', {})
Спустя 100 сек.
Поржал с этого
In [1]: from __future__ import braces
File "<ipython-input-1-2aebb3fc8ecf>", line 1
from __future__ import braces
SyntaxError: not a chance
Спустя 264 сек.
Зачатки паттерн-матчинга в 3 питоне
>>> l = ['p', 'y', 't', 'h', 'o', 'n']
>>> h, *t, _ = l
>>> h
'p'
>>> t
['y', 't', 'h', 'o']