我使用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'