Hacker News new | ask | show | jobs
by holmb 3674 days ago
Reading https://syntaxdb.com/ref/python/sets I spotted an error. "setName = {} #another way to initialize set"

``` In [1]: s = {}; type(s) Out[1]: dict ```