..., A Special Placeholder
... is used the same way as pass, but it's really more like None. It's a singleton that does nothing.
I will use it when I want to indicate that the code is not complete.
Example
for i in range(10):
if i % 2 == 0:
...
else:
print("Odd number:", i)