Python | Decimal compare_signal() method Last Updated : 19 Sep, 2021 Comments Improve Suggest changes Like Article Like Report Decimal#compare_signal() : compare_signal() is a Decimal class method which compares th two Decimal values, except for the NaN values. Syntax: Decimal.compare_signal()Parameter: Decimal valuesReturn: 1 - if a > b -1 - if a < b 0 - if a = b Code #1 : Example for compare_signal() method Python3 # Python Program explaining # compare_signal() method # loading decimal library from decimal import * # Initializing a decimal value a = Decimal('0.142857') b = Decimal(-1) # printing Decimal values print ("Decimal value a : ", a) print ("Decimal value b : ", b) # Using Decimal.compare_signal() method print ("\n\nDecimal a with compare_signal() method : ", a.compare_signal(a)) print ("Decimal a with compare_signal() method : ", a.compare_signal(b)) print ("Decimal b with compare_signal() method : ", b.compare_signal(a)) Output : Decimal value a : 0.142857 Decimal value b : -1 Decimal a with compare_signal() method : 0 Decimal a with compare_signal() method : 1 Decimal b with compare_signal() method : -1 Code #2 : Example for compare_signal() method Python3 # Python Program explaining # compare_signal() method # loading decimal library from decimal import * # Initializing a decimal value a = Decimal('-3.14') b = Decimal('321e + 5') # printing Decimal values print ("Decimal value a : ", a) print ("Decimal value b : ", b) # Using Decimal.compare_signal() method print ("\n\nDecimal a with compare_signal() method : ", a.compare_signal(a)) print ("Decimal a with compare_signal() method : ", a.compare_signal(b)) print ("Decimal b with compare_signal() method : ", b.compare_signal(a)) Output : Decimal value a : -3.14 Decimal value b : 3.21E+7 Decimal a with compare_signal() method : 0 Decimal a with compare_signal() method : -1 Decimal b with compare_signal() method : 1 Comment More infoAdvertise with us Next Article Python | Decimal compare_signal() method N noobestars101 Follow Improve Article Tags : Python Practice Tags : python Similar Reads Python | Decimal compare_total() method Decimal#compare_total() : compare_total() is a Decimal class method which compares the two Decimal values using their abstract representation rather than their numerical value. Syntax: Decimal.compare_total() Parameter: Decimal values Return: 1 - if a > b -1 - if a < b 0 - if a = b Code #1 : E 2 min read Python | Decimal copy_sign() method Decimal#copy_sign() : copy_sign() is a Decimal class method which returns the copy of the first Decimal value with the sign set to be the same as the sign of the second Decimal value. Syntax: Decimal.copy_sign() Parameter: Decimal values Return: the copy of the first Decimal value with the sign set 2 min read Python | Decimal compare() method Decimal#compare() : compare() is a Decimal class method which compares the two Decimal values. Syntax: Decimal.compare() Parameter: Decimal values Return: 1 - if a > b -1 - if a < b 0 - if a = b Code #1 : Example for compare() method Python3 # Python Program explaining # compare() method # loa 2 min read Python | Decimal compare_total_mag() method Decimal#compare_total_mag() : compare_total_mag() is a Decimal class method which compares the two Decimal values by using their abstract representation rather than their value, but ignoring the sign of each operand. Syntax: Decimal.compare_total_mag() Parameter: Decimal values Return: 1 - if a > 2 min read Python | Decimal is_signed() method Decimal#is_signed() : is_signed() is a Decimal class method which checks whether the sign of Decimal value is negative Syntax: Decimal.is_signed() Parameter: Decimal values Return: true - if the sign of Decimal value is negative; otherwise false Code #1 : Example for is_signed() method Python3 # Pyt 2 min read Like