标签: python
我尝试过发送变量并在函数中更改其值。但是,我没有成功。我做了什么;
>>>a = True >>>def f (c): c = False >>>f(a) >>>a a = True
但是我想要一个假,不使用返回,我可以吗?