Skip to content

Instantly share code, notes, and snippets.

@ChaitanyaBaweja
Last active October 6, 2019 12:55
Show Gist options
  • Save ChaitanyaBaweja/f06d0bbad83b288f49dde51d40cdf63e to your computer and use it in GitHub Desktop.
Save ChaitanyaBaweja/f06d0bbad83b288f49dde51d40cdf63e to your computer and use it in GitHub Desktop.
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