Python dict: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

2019-07-28

  • curprev 11:39:362019-07-28T11:39:36Tobiasco talk contribs 223 bytes +223 Created page with "<pre> >>> dict(a=1,b=2) {'a': 1, 'b': 2} >>> d=dict(a=1,b=2) >>> d {'a': 1, 'b': 2} >>> **d File "<stdin>", line 1 **d ^ SyntaxError: invalid syntax >>> dict(**d) {..."