In a game, I want to print "Good afternoon" once when score is 2 in Python.
if score == 2: print("Good afternoon!")
Th