Q. What is the output of the following code?
Code:
class Library:
def practice(self, language='Java'):
print(language)
l = Library()
l.practice('Python')
β
Correct Answer: (A)
Python