When I return this function I get back the imputed name and "none." How do I get rid of "none."
def hello_name(yeah):
"""returns a greeting in the form of 'Hello s!'"""
print('Hello {0}!'.format(yeah))
When I return this function I get back the imputed name and "none." How do I get rid of "none."
def hello_name(yeah):
"""returns a greeting in the form of 'Hello s!'"""
print('Hello {0}!'.format(yeah))