This passes:
print(“Tip amount:”, tip)
This FAILS:
print("Tip amount: " + str(tip))
===
But.. same concatenation approach works in Step 4 ! ![]()
So, there should be some consistency I guess..
As long as output matches, shouldn’t both approach be acceptable? ![]()

