在Python中执行方法/函数时无输出

时间:2019-04-24 08:51:22

标签: python variables

命令行上没有输出。另外,变量input不能设置。

我尝试从类中删除变量,结果相同。

class test:
    input = ""

    def __init__(this, input):
        this.input = input

    def output(this):
        print(this.input)

obj = test("hallo")
obj.output

我希望输出为hallo

1 个答案:

答案 0 :(得分:6)

您需要调用该方法,而不仅仅是引用它:

obj.output()