初学者问题:如何摆脱输出中的“'”

时间:2019-02-20 03:16:42

标签: python-3.x

我正在编写代码,以实现从一个列表到另一个列表的转换,除了一个问题,我已经弄清了所有内容。创建了一个列表,并使用

将列表中的各项组合在一起

X =“”并返回X.join(我的字符串列表)

虽然解决了我在每个字符串值之间遇到的逗号问题,但我的输出仍然是:

'100 200 0 22'

但是我需要输出看起来像:

100 200 0 22

开头和结尾都没有''。有什么办法吗?

1 个答案:

答案 0 :(得分:0)

这对您有帮助吗?

mylist = ['100', '200', '0', '22']
x = " "
y = (x.join(mylist))

# Use the type() function to know which class a variable or a value belongs
print (type(y))
# output
<class 'str'>

print (y)
# output
100 200 0 22