## Expected ````python >>> a = {1, 2, 3} >>> a {1, 2, 3} ```` ## Actual ````python >>> a = {1, 2, 3} >>> a <set instance at 0xc0000aa018> ````