You are here: Home / Topics / Write a Python program to get the difference between a given number and 17, if the number is greater than 17 return double the absolute difference

Write a Python program to get the difference between a given number and 17, if the number is greater than 17 return double the absolute difference

Filed under: Python on 2023-09-23 06:48:07

def difference(n):
   if n <= 17:
       return 17 - n
   else:
       return (n - 17) * 2

print(difference(22))
print(difference(14))     

Output:

10                                                                    


About Author:
M
Mr. Dubey     View Profile
Founder of MCQ Buddy. I just like to help others. This portal helps students in getting study material free. Share your stuff here so that others can get benefitted.