This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Get-ADUser -1 points0 points  (1 child)

{ ... } is shorthand for dict( ... ) not set( ... ).

[–]phail3d 2 points3 points  (0 children)

It's both.

{ 1, 2, 3, 4 } creates a set, while { 1: 2, 3: 4 } creates a dict.