def change(s):
s = s + "!"
word = "holiday"
change(word)
print word
how come the output of this is "holiday" instead of "holiday!"? Is it because the 3 line of codes are outside the function? If so, why would it matter if it's outside the function since it's after the change function?