提问人:OuchBrainHurts 提问时间:1/28/2023 最后编辑:njzk2OuchBrainHurts 更新时间:1/28/2023 访问量:14
为什么此代码不给出 concatenate str+list Type 运行时错误?
Why does this code not give a concatenate str+list Type runtime error?
问:
res=[]
res+=''.join(['a','b'])
print(res)
#output>>>['a', 'b']
但是当我这样做时:
res=[]
res=res+''.join(['a','b'])
print(res)
#it 按预期给出类型错误
答: 暂无答案
评论
__iadd__