python类错误求解!

我在mac上写了一个格式转换的脚本,在运行的时候,输入输出都没问题,然而实利方法在被调用的情况下居然没有运行,输出我想要的文件。请问哪里出来问题?代码如下

import pandas
import xlrd
class zh:
    scsj=None
    def zzh(self):
        o=pandas.read_excel(self.scsj)
        o.to_csv("/Users/mac/Desktop/上传数据.CSV")
a=zh()
a.scsj=input("请输入要转化的晚间地址:")
a.zzh
print("转换完成!")

调用函数加括号


import pandas
import xlrd
class zh:
    scsj=None
    def zzh(self):
        o=pandas.read_excel(self.scsj)
        o.to_csv("/Users/mac/Desktop/上传数据.CSV")
a=zh()
a.scsj=input("请输入要转化的晚间地址:")
a.zzh()   #调用函数加括号
print("转换完成!")

img