I tried to ask a question normally once in here but nobody understands what I want to ask. So I've found example in PHP.
// $_POST = array('address' => '123', 'name' => 'John Doe');
extract($_POST);
echo $address;
echo $name
is there's a function like extract() in PYTHON?????
So the same goes to dictionary:
mydict = {'raw':'data', 'code': 500}
// some magic to extract raw and code as vars
print raw
p.s. why I want to do this: when you're in class method, it's damned hard to have 6 manipulation with strings in join() and format() when string is self.data['raw']['code'] (assume it's dict in dict in here)