如何从输出结果中删除括号“ []”和逗号?

时间:2018-09-12 12:25:18

标签: python python-3.x

我的Python程序是:

def remove(duplicate):
  final_list=[]
  for num in duplicate:
    if num not in final_list:
      final_list.append(num)
  return final_list
duplicate=input()
print(remove(duplicate),end="")

2 个答案:

答案 0 :(得分:0)

很简单,您正在打印整个列表,其中输出是[]和逗号。 您只需要分别打印每个元素  喜欢:

for elem in remove(duplicate):
      print(elem, end=" ")

答案 1 :(得分:0)

您可以使用str.join将列表转换为以空格分隔的字符串作为输出:

print(' '.join(remove(duplicate)),end="")