如何去掉Python列表中的单引号?

问题描述

—–自己在写python代码的时候发现的问题,上网查了这个问题,自己还是有点疑惑,所以发出来给大家看下,有解答可以给我留言。

>>> Xn = ['1abv_','1af7_','1cqkA','1csp_','1dcjA','256bA']
>>> Xn[1]
'1af7_'

解决方法 一

—–使用replace,这里虽然显示的还是有,但是使用的时候已经不会报错了

>>> Xn[1].replace("'","")
'1af7_'

我认为的 解决方法 二

—-放到for循环或者是print中

file = ['1abv_','1af7_','1cqkA','1csp_','1dcjA','256bA']
for fileName1 in file:
    temp1 = [];temp2=[];temp3=[];temp4=[];temp5=[]
    for fileName2 in file:
        print fileName1 # we can also get rid of '' of the list just easy as this
        print fileName2

output
1abv_
1abv_
1abv_
1af7_
1abv_
...

——看到这里,真的是很迷惑,为什么会这样,明明自己遇到了取Xn[1]时遇到了多余字符”,现在使用print时会这样,直接就没有了”,有答案的请留言,谢谢了。

>>> print Xn[1].replace("'","")
1af7_
>>> print Xn[1]
1af7_

——又遇到问题
AttributeError: ‘list’ object has no attribute ‘replace’
list列表没有replace这个属性

  • 11
    点赞
  • 25
    收藏
    觉得还不错? 一键收藏
  • 12
    评论
评论 12
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值