标签: python
我有以下方法,
def MySampleMethod(): return "Sample method called"
我尝试了以下代码,
MySampleMethod.variablename = "Some data" print MySampleMethod.variablename
执行的代码没有错误并打印“Some data”。
Some data
如何为函数分配变量以及它是如何工作的?