String Split and Join

  • + 0 comments

    def split_and_join(line): # write your code here s=line.split(" ") #s=s.split(" ") #print(s) s="-".join(s) return(s)