0
Error in py challenge question
Hi, I think I have spotted an issue with one python question. You may find it here: https://spaces.hightail.com/space/IX2qKZAFK8 I think the right answer should be âfrozenset({âageâ, ânameâ,âsexâ})â but not âfrozenset({âageâ, âsexâ, ânameâ})â - name and sex should be switched in places. What do other think? Please donât pat attention to the selection in the screenshot. Cheers.
2 Answers
+ 2
sets are unordered, the elements may appear in any order. A frozenset is an immutable set, but it is still unordered
+ 1
I see now. Was thinking it might have an order still. thank you for explaining Anna