Skip to content

Instantly share code, notes, and snippets.

@agaerig
Created January 16, 2013 17:54
Show Gist options
  • Save agaerig/4549208 to your computer and use it in GitHub Desktop.
Save agaerig/4549208 to your computer and use it in GitHub Desktop.
def middle_part(s):
if len(s.strip()) > 6:
s = s.strip()[3:(len(s.strip())-3)]
else:
s = ''
return s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment