Absolute Value Function

  • Share this:

Code introduction


Returns the absolute value of a number.


Technology Stack : abs() function

Code Type : Function

Code Difficulty :


                
                    
def abs_val(num):
    return abs(num)                
              
Tags: