Which of these would you use to write Python code in a functional way?

(1 point)
print()
def printScore()
class Score()
map()

To write Python code in a functional way, you would use the functions map(). The other options, print(), def printScore(), and class Score(), are not specifically related to functional programming.