Skip to content

Instantly share code, notes, and snippets.

@timconradinc
Last active December 16, 2015 21:09
Show Gist options
  • Save timconradinc/5497836 to your computer and use it in GitHub Desktop.
Save timconradinc/5497836 to your computer and use it in GitHub Desktop.
def somefunc(msg):
results = ""
results = msg.swapcase()
return results
if __name__ == "__main__":
x = somefunc("himom")
from otherfile import somefunc
def dothings()
x = somefunc("himom")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment