+2 votes
in Class 12 by kratos

Give one word for the following:

a. A sort of constructor in Python __

b. A region of a Python program where a namespace is directly accessible.__

c. It returns the docstring of a class.__

d. It returns the string representation of the object. __

e. A method used to delete an attribute. __

1 Answer

+1 vote
by kratos
 
Best answer

a. init

b. scope

c. doc

d. str

e. delattr ()

...