Last active
October 6, 2019 12:55
-
-
Save ChaitanyaBaweja/f06d0bbad83b288f49dde51d40cdf63e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
my_string = "my name is chaitanya baweja" | |
# using the title() function of string class | |
new_string = my_string.title() | |
print(new_string) | |
# Output | |
# My Name Is Chaitanya Baweja |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment