Absolute Difference Calculator

  • Share this:

Code introduction


Calculates the absolute difference between two numbers.


Technology Stack : abs()

Code Type : Mathematical function

Code Difficulty :


                
                    
def abs_diff(a, b):
    return abs(a - b)                
              
Tags: