Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Last active June 28, 2020 17:48
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/ec38ba41a4d3db4accd807613ead578d to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/ec38ba41a4d3db4accd807613ead578d to your computer and use it in GitHub Desktop.
s1="Example Of Strings"
print (s1.lower()) #Output:example of strings
s2="EXAMPLE OF STRINGS??"
print (s2.lower())#Output:example of strings??
s3="1.example of strings?"
print (s3.lower()) #Output:1.example of strings?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment