Given the following function, what is the bug? def get_perfo…
Given the following function, what is the bug? def get_performance(grade: str) -> str: match grade: case “A”: return “Excellent” case “B”: return “Good” case “C”: return “Mediocre” case “D”: return “Weak” case “F”: return “Bad”