Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created June 28, 2020 05:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IndhumathyChelliah/63345bbabad1254825cf11d07471bb76 to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/63345bbabad1254825cf11d07471bb76 to your computer and use it in GitHub Desktop.
s1="example of strings"
print (s1.swapcase()) #Output:EXAMPLE OF STRINGS
s2="EXAMPLE OF STRINGS"
print (s2.swapcase()) #Output:example of strings
s3="Example Of Strings"
print (s3.swapcase()) #Output:eXAMPLE oF sTRINGS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment