why does this code print
Hello
None
None
def begin ():
print("Type new to start a new game or load to load the previous game")
print prompt_start()
def start ():
print("hello")
def prompt_start ():
prompt_0 = raw_input("Type command:")
if prompt_0==("new"):
print start()
elif prompt_0==("load"):
load()
else:
print("read instructions!")
print prompt_start
begin()
please give solutions to this as i can't figure out what is wrong