Write a python function to concat the input strings and there's also a choice for seperator
Topic: Write a python function to concat the input strings and there's also a choice for seperator
Solution
def con_str(*args, sep = ' '): return sep.join(args)
List all Python Programs