Exercise 1 Your first function

Create a function that accepts a name and outputs ‘Hello name’

def hello(name):
  print('Hello '+ name + '!')
hello('Hai Xiang')
## Hello Hai Xiang!
hello('Tom')
## Hello Tom!