I get deep indentation when I write code like below
match = re.search(some_regex_1, s)
if match:
# do something with match data
else:
match = re.search(some_regex_2, s)
if match:
# do something with match data
else:
match = re.search(soem_regex_3, s)
if match:
# do something with match data
else:
# ...
# and so on
I tried to rewrite as:
if match = re.search(some_regex_1, s):
# ...
elif match = re.search(some_regex_2, s):
# ...
elif ....
# ...
...
but Python doesn't allow that syntax. What should I do to avoid deep indentation in this case?
if a == b: ...in Python, not just one equals sign as you have above. Or, depending on the scenario,if a is b: ...Theelifstatements above work in theory, but you need the equals-equals. – Karmel May 21 '12 at 18:45matchfor truthness at the same time, like folks might do in C:while (data=fread(fp)) {– JoeFish May 21 '12 at 18:51