Preguntas con la etiqueta [first-class-functions]
Lista
first-class-functions preguntas
¿Qué significa cuando se omiten los paréntesis en una función o llamada a un método?
6
respuestas
28
votos
54.1k
vistas
Tengo este código de ejemplo: class objectTest(): def __init__(self, a): self.value = a def get_value(self): return self.value a = objectTest(1) b = objectTest(1) print(a == b) print(a.get_value() == b.get_value) print(a.get_value()