Created
April 11, 2017 05:20
-
-
Save abhinavkorpal/81052c0e4743bab513864feda5774a18 to your computer and use it in GitHub Desktop.
String Split and Join
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 split_and_join(line): | |
# write your code here | |
return("-".join(line.split())) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment