In ECMAScript 6, I can do something like this ...
var id = 1;
var name = 'John Doe';
var email = 'email@example.com';
var record = { id, name, email };
... as a shorthand for this:
var id = 1;
var name = 'John Doe';
var email = 'email@example.com';
var record = { 'id': id, 'name': name, 'email': email };
Is there any similar feature in Python?