string_utils module

Utilities for strings!

string_utils.py A sample repo for the workshop what we did in january 2019 at VT

Misc. string processing functions

molssi_devops_2019.string_utils.title_case(sentence)

Convert a string to title title_caseself.

Title case means that the first character of every word is capitalize lowercaseself.

Parameters:sentences (string) – string that we’re going to use as input
Returns:newsentence – String formatted
Return type:string