Is The Following Python Code Correctp Pre Langpython #1075
Is the following Python code correct?</p> <pre><code class="language-python"> >>> class A: def __init__(self,b): self.b=b def display(self): print(self.b) >>> obj=A("Hello") >>> del obj </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 Classes and Objects - Python Classes and Objects - Quiz No.1.