findloc 是我创建的另一个子例程,当调用 parse 时,有时它返回 None 有时返回一个值,当尝试 rstrip 时我收到以下错误?如何仅在对象不是“nonetype”时使用 rstrip 或请建议任何其他方法.
build_loc=parse(findloc(targetmeta_cid).strip())
Target_list.append(build_loc.rstrip('\r\n'))
错误
Target_list.append(build_loc.rstrip('\r\n'))AttributeError: 'NoneType' object has no attribute 'rstrip'