为了账号安全,请及时绑定邮箱和手机立即绑定

考虑引号的字符串拆分

考虑引号的字符串拆分

一只甜甜圈 2021-04-16 22:15:38
想象一下这个字符串:"a","b","hi, this is Mboyle"我想用逗号将其分开,除非逗号在两个引号之间:即:["a","b","hi, this is Mboyle"]我该如何实现?使用拆分,“嗨,这是Mboyle”也将拆分!
查看完整描述

3 回答

?
慕村9548890

TA贡献1884条经验 获得超4个赞

您可以用逗号分割字符串,而不用逗号分割",":


In [1]: '"a","b","hi, this is Mboyle"'.strip('"').split('","')

Out[1]: ['a', 'b', 'hi, this is Mboyle']


查看完整回答
反对 回复 2021-04-27
?
qq_笑_17

TA贡献1818条经验 获得超7个赞

我对这个问题的看法(谨慎使用!)


s = '"a","b","hi, this is Mboyle"'

new_s = eval(f'[{s}]')

print(new_s)

输出:


['a', 'b', 'hi, this is Mboyle']

编辑(更安全的版本):


import ast.literal_eval

s = '"a","b","hi, this is Mboyle"'

new_s = ast.literal_eval(f'[{s}]')


查看完整回答
反对 回复 2021-04-27
?
阿波罗的战车

TA贡献1862条经验 获得超6个赞

解决了。


with gzip.open(file, 'rt') as handler:

    for row in csv.reader(handler, delimiter=","):


查看完整回答
反对 回复 2021-04-27
  • 3 回答
  • 0 关注
  • 168 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信