如何将字符串从python3.6转换为旧版本?

时间:2019-06-21 07:56:23

标签: python string

我使用python3.6,但是要完成这项工作,我需要使用旧版本的Python。

如果可能,我想将此行(python3.6)转换为旧版本:

for uniref in [f">{chunk.rstrip()}" 
   for chunk in data.split(">")]:

我尝试了

for uniref in [">{chunk.rstrip()}" 
    for chunk in data.split(">").format(chunk.rstrip())]:

但我收到了此错误消息AttributeError: 'list' object has no attribute 'format'

0 个答案:

没有答案