Skip to content

Instantly share code, notes, and snippets.

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