In python you can use \ to continue a long line. For example:
if a == a or a==b or a==c:
print a
can be written as
if a == a or \
a == b or \
a == c:
print a
However, when I try the same code in python scripts for mushclient the \ causes an error.
Does anyone know of a work around?
if a == a or a==b or a==c:
print a
can be written as
if a == a or \
a == b or \
a == c:
print a
However, when I try the same code in python scripts for mushclient the \ causes an error.
Does anyone know of a work around?