Python:将字符串转换为列表/从列表转换

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python:将字符串转换为列表/从列表转换相关的知识,希望对你有一定的参考价值。

// Is there a way in python to convert a list say [1,2,3,4] to a string and
// also how to convert a string to a list?

// use str() or repr() to convert to a string.
// eval() will convert back to a list.
  1. x = range(10)
  2. print x
  3. # [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
  4. print str(x)
  5. # '[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]'
  6. print repr(x)
  7. # '[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]'
  8. y = str(x)
  9. z = eval(y)
  10. print x == z
  11. # 1
  12. print z
  13. # [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

以上是关于Python:将字符串转换为列表/从列表转换的主要内容,如果未能解决你的问题,请参考以下文章

将Unicode列表转换为包含Python字符串的列表的简单方法?

将字符串的python列表转换为字节数组

将字符串转换为python中的字符串列表

Python将列表中的字符串转换为数字

将列表转换为格式化字符串 - 更新

从浮点字符串到 Int 的 Python 类型转换在创建列表时无法在 for 循环中工作