Created
May 17, 2017 18:16
-
-
Save techedlaksh/64975da6a25541cf7dc784b4b0d69264 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class LiFailed(): | |
pass | |
class TrFailed(): | |
pass | |
try: | |
# whole code of li structure | |
if a == " ": | |
raise LiFailed | |
except LiFailed: | |
try: | |
# whole code of tr | |
if b == " ": | |
raise TrFailed | |
except TrFailed: | |
try: | |
# your code to exhaustive search of word "Shipping Weight" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment