Am trying to get a function call but i cant get it to print. Please help here. This is the code:
def foo():
name = input ('>>').lower().split()
for item in name:
if name == foo:
print ('foo here!')
else:
bar()
def bar():
name = input ('>>').lower().split()
for item in name:
if name == bar:
print ('bar here!')
def start():
print('Welcome Home')
name = input
foo()
start()