xxxxxxxxxx
# Short answer:
# This can't be done in Python
# Long answer:
# If you want to do something like this:
if variable == "yes" and \ # comment about variable
other_variable == "no":
print("yes and no")
# or this:
if variable == "yes" and \
# comment about other_variable
other_variable == "no":
print("yes and no")
# this syntax is simply invalid in Python