I have see that when we use ellipses (three continuous dots …) in Python, it means different things according to the context.
I am not getting what it means when we instantiate a class with … For example:
class Sample():
def __init__(self,a):
self.a = a
ref = Sample(...) <-- I am not sure what this refers.
Can I have some leads please.