标签: python function
我在python中有一个下面提到的函数:
>>> students=[] >>> def add_student(name): ... students.append(name)
如何获取add_student的实际文本?