What is returned by the following function? def check_value(…

What is returned by the following function? def check_value(x):   try:    if x > 0:       return “Positive”    elif x == 0:       return “Zero”    else:       return “Negative”   except:       return “—“result = check_value(“Hello”) print (result)

What is returned by the following function? def check_value(…

What is returned by the following function? def check_value(x):   try:    if x > 0:       return “Positive”    elif x == 0:       return “Zero”    else:       return “Negative”   except:       return “—“result = check_value(“Hello”) print (result)

What is returned by the following function? def check_value(…

What is returned by the following function? def check_value(x):   try:    if x > 0:       return “Positive”    elif x == 0:       return “Zero”    else:       return “Negative”   except:       return “—“result = check_value(“Hello”) print (result)