Skip to content

Instantly share code, notes, and snippets.

@mpilosov
Created May 25, 2018 00:44
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 mpilosov/ec4bfdf41f5196812fe8efca96683cbe to your computer and use it in GitHub Desktop.
Save mpilosov/ec4bfdf41f5196812fe8efca96683cbe to your computer and use it in GitHub Desktop.
Favorite Python String Tricks
a = 'trip distance'
b = ' '.join([s.capitalize() for s in a.split(' ')])
print(b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment