python utilise du numphy

from decimal import Decimal
num1=Decimal('1.1')
num2=Decimal('1.563')
print(num1+num2)
Nazário