Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created June 28, 2020 02:43
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/81895342b5ba10f27a4dc20ac0c5e9c3 to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/81895342b5ba10f27a4dc20ac0c5e9c3 to your computer and use it in GitHub Desktop.
#capitalize-Only first character of string is capitalized
s1="example of string methods"
print (s1.capitalize()) #Output:Example of string methods
s2="EXAMPLE OF STRING METHODS"
print (s2.capitalize())#Output:Example of string methods
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment