>>> s1 = set([1,2,3,4,5,6])
>>> for ele in s1:
... print(ele)
File "<stdin>", line 2
print(ele)
^
IndentationError: expected an indented block
>>>
>>> s1 = set([1,2,3,4,5,6])
>>> for ele in s1:
... print ele
File "<stdin>", line 2
print ele
^
IndentationError: Missing parentheses in call to 'print'