def greeting_2(name): print("Hello " + name) example = greeting_2("Christine") print(example) This gives the value: Hello Christine None And I don't understand why I'm getting "None"