This is my python code for printing an absolute number. My function is returning type None
. I am not getting what I have done wrong. Please help me.
def n(num):
if num<0:
return (num*-1)
no = input("Enter a number: ")
print "Absolute Value is: "
print n(no)
You really don't need your own function for absolute value...
The
return
is on the condition. Try :writing an else statement will return num >= 0
Thank You :)