def exclaim(s): # Changes a normal string into an exclamation! s = s.upper() return s + '!!' exclaim("Hello, everyone")
'HELLO, EVERYONE!!'
Comments and functions