There is an equation
a = 5 b = 6 print(a+b) #5+6 How to do so if the variable b values a negative -6, he placed it in parentheses
print(a+b) #5+(-6) There is an equation
a = 5 b = 6 print(a+b) #5+6 How to do so if the variable b values a negative -6, he placed it in parentheses
print(a+b) #5+(-6) Source: https://ru.stackoverflow.com/questions/723474/
All Articles