Last active
December 16, 2015 21:09
-
-
Save timconradinc/5497836 to your computer and use it in GitHub Desktop.
This file contains 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
def somefunc(msg): | |
results = "" | |
results = msg.swapcase() | |
return results | |
if __name__ == "__main__": | |
x = somefunc("himom") |
This file contains 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
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