Skip to content

Instantly share code, notes, and snippets.

@SZanlongo
Created September 18, 2014 02:02
Show Gist options
  • Save SZanlongo/31da62f69ff8b4cc0203 to your computer and use it in GitHub Desktop.
Save SZanlongo/31da62f69ff8b4cc0203 to your computer and use it in GitHub Desktop.
Check if a line is empty
# https://stackoverflow.com/questions/691946/short-and-useful-python-snippets
line = ""
if not line.strip():
print 'empty'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment