“Can only join an iterable” python error

前端 未结 2 1992
孤街浪徒
孤街浪徒 2021-02-13 06:26

I\'ve already looked at this post about iterable python errors:

"Can only iterable" Python error

But that was about the error \"cannot assign an iterab

2条回答
  •  有刺的猬
    2021-02-13 07:22

    string join must satisfy the connection object to be iterated(list, tuple)

    splitlist1.reverse() returns None, None object not support iteration.

提交回复
热议问题