我可以创建一个函数来清除python中的变量吗?

时间:2014-01-30 11:10:28

标签: python python-2.7

在python中可以做这样的事情:

def number_clear(num):
    num = 0 
x = 10 
number_clear(x)
print x 
>>0

在C中,我们可以通过指针

来做到这一点

0 个答案:

没有答案