I have a function mentioned below in python:
>>> students=[]
>>> def add_student(name):
... students.append(name)
How can i get actual text of add_student?
I have a function mentioned below in python:
>>> students=[]
>>> def add_student(name):
... students.append(name)
How can i get actual text of add_student?