variable = 1 - 2 - 6 print(variable) for the above function we are getting the result as +5, but it has to be -7.
variable = 1 - 2 - 6
print(variable)
for the above function we are getting the result as +5, but it has to be -7.