Skip to content

Instantly share code, notes, and snippets.

@techedlaksh
Created May 17, 2017 18:16
Show Gist options
  • Save techedlaksh/64975da6a25541cf7dc784b4b0d69264 to your computer and use it in GitHub Desktop.
Save techedlaksh/64975da6a25541cf7dc784b4b0d69264 to your computer and use it in GitHub Desktop.
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