python3. def split_and_join(line): # write your code here line_list = line.split(" ") new_line = "-".join(line_list) return new_line if ...
確定! 回上一頁