a = '1' print(a())
a = lambda: '1' print(a())
Used when an object being called has been inferred to a non callable object.