Hacker News new | ask | show | jobs
by happy-go-lucky 3080 days ago
This works in Python 3.6:

    >>> {**{1:2,3:4}}
    {1: 2, 3: 4}
:)