Created
October 2, 2020 02:51
-
-
Save inspirit941/eb8e9977f307ec3d8dbaed8f1cfcc6ac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def solution(s): | |
return " ".join([i.capitalize() for i in s.split(" ")]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment