标签: python rename
是否可以在python中重命名程序中现有的函数和类名?
我已经完成了一个程序,现在我想在某些函数和类中更改名称,但似乎不可能。有什么技巧吗?
答案 0 :(得分:1)
这应该有效:
>>> def test(): print "Test" ... >>> test2 = test >>> test2() Test