Calculate Absolute Difference

  • Share this:

Code introduction


Calculate the absolute difference between two numbers.


Technology Stack : Built-in function

Code Type : Mathematical calculation function

Code Difficulty :


                
                    
def abs_diff(x, y):
    """
    Calculate the absolute difference between two numbers.
    """
    return abs(x - y)