您的当前位置:首页正文

python怎么去掉数据的方括号

2020-11-27 来源:华拓网
平时python输出list字符串时,会自动加上引号和中括号。

比如(推荐学习:Python视频教程)

str=['hello','world']
>>> str
['hello', 'world']

方法1

可以用join方法:

>>> print " ".join(str)
hello world

其中:Python join() 方法用于将序列中的元素以指定的字符连接生成一个新的字符串。

比如:

str = "-"
seq = ("a", "b", "c")
print str.join( seq )

输出结果:

a-b-c

方法2:如果list存放的是数字,则:将其转为int即可。因为原来存放的是string型的

str=['1', '2', '3']
for i in str: 
 int(i) 
 print(i)

更多Python相关技术文章,请访问Python教程栏目进行学习!