I have this simple code:
val = float(input('insira o salario: '))
print('o novo salario e {} reais'.format(val * 1.15))
When I insert 1000, it prints 1150. But when I insert 100, it prints literally 114.99999999999999.
I am really new into programming and I couldn't find an answer anywhere. Why is this happening?