我有这个设计,例如:
design = """xxx
yxx
xyx"""
我想将它转换为数组,矩阵,嵌套列表,如下所示:
[['x', 'x', 'x'], ['y', 'x', 'x'], ['x', 'y', 'x']]
请问你会怎么做?
答案 0 :(得分:8)
将str.splitlines
与map
或list comprehension
:
使用map
:
>>> map(list, design.splitlines())
[['x', 'x', 'x'], ['y', 'x', 'x'], ['x', 'y', 'x']]
列表理解:
>>> [list(x) for x in design.splitlines()]
[['x', 'x', 'x'], ['y', 'x', 'x'], ['x', 'y', 'x']]