String Split and Join in Python - HackerRank Solution
Problem
In Python, a string can be split on a delimiter.
Example :
>>> a = "this is a string" >>> a = a.split(" ") # a is converted to a list of strings. >>> print a ['this', 'is', 'a', 'string']
Joining a string is simple:
>>> a = "-".join(a) >>> print a this-is-a-string
Task :
You are given a string. Split the string on a
" "
(space)
delimiter and join using a -
hyphen. Input Format :
The first line contains a string consisting of space separated words.
Output Format :
Print the formatted string as explained above.
Sample Input :
this is a string
Sample Output :
this-is-a-string
Solution :
1 2 3 4 5 6 7 8 9 10 11 12 13 | # String Split and Join in Python - HackerRank Solution def split_and_join(line): # write your code here # String Split and Join in Python - HackerRank Solution START Output = line.split(); Output = "-".join(Output) return Output; # String Split and Join in Python - HackerRank Solution END if __name__ == '__main__': line = input() result = split_and_join(line) print(result) |
Disclaimer :-
the above hole problem statement is given by hackerrank.com but the solution is generated by the codeworld19 authority if any of the query regarding this post or website fill the following contact form thank you.