How to add comments in Python code with break-lines? I suppose the following should not work. Is there any wrappers for Pythons that support the break-lines?
# Program make a simple calculator
# This function adds two numbers
def add(x, y):
return x + y
# This function subtracts two numbers
def subtract(x, y):
return x - y
# This function multiplies two numbers
def multiply(x, y):
return x * y
print(subtract(6, \ # = 6 - (3 * (1 + 2))
multiply(3, \ # = 3 * (1 + 2)
add(1, 2)))) # = 1 + 2