Travis build: 200

This commit is contained in:
30secondsofcode
2019-11-02 08:57:57 +00:00
parent d9ecb310b0
commit 15b9b6fe5b
3 changed files with 5 additions and 5 deletions

View File

@ -1784,7 +1784,7 @@ byte_size('Hello World') # 11
Converts a string to camelcase.
Use `re.sub()` to replace any `-`,`_` or ` ` (space) with a space, using the regexp `r"(_|-)+"`.
Use `re.sub()` to replace any `-` or `_` with a space, using the regexp `r"(_|-)+"`.
Use `title()` to capitalize the first letter of each word convert the rest to lowercase.
Finally, use `replace()` to remove spaces between words.