Complete the solution so that it splits the string into pairs of two characters. If the string contains an odd number of characters then it should replace the missing second character of the final ...
def split_and_join(line): a = line.split(" ") a = "-".join(a) return a if __name__ == '__main__': line = input() result = split_and_join(line) print(result) ...
一些您可能无法访问的结果已被隐去。
显示无法访问的结果