Erster Buchstable Groß in Wort

ID251
Link ReferenceNot set
Link CreditsNot set
Link Technical DocumentationNot set
PlCodelangPython
PlGroupStrings
PlItemTitleErster Buchstable Groß in Wort
Code# Siehe auch: http://www.php2python.com/wiki/function.ucwords/

myString = "nothingspecial"
import string
uc = string.capwords(myString)
print(uc)
# Nothingspecial
Result Example