摘要:
L = [1,2,3,4,5]print(','.join(L))以上写法会报错,TypeError: sequence item 0: expected str instance, int found原因:list包含数字,不能直接转化成字符串修改成 print(','.join(str(n) f 阅读全文
posted @ 2021-07-26 14:17
Vicky_Zhou
阅读(644)
评论(0)
推荐(0)
浙公网安备 33010602011771号