以下程序的输出结果是:
def func(num):
num *= 2
x = 20
func(x)
print(x)
20虽然调用了func()函数,但是函数没有把结果返回,x的值不变
没有return语句么
20