Erster Buchstable Groß in Wort
ID | 251 |
---|---|
Link Reference | Not set |
Link Credits | Not set |
Link Technical Documentation | Not set |
PlCodelang | Python |
PlGroup | Strings |
PlItemTitle | Erster 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 |