执行以下代码:
def funct(): print("I love") def funct_1(): print("Python") funct()
程序输出的结果为:I lovePython
正确
错误