Suppose you have a Song class that looks like the following:…
Suppose you have a Song class that looks like the following: class Song: def __init__(self, title) -> None: self._title = title # … Which of the following code snippets is a valid getter method for the Song title attribute?