Python编程问题

Python里怎么把L = [✀0 -1 1.5尀n✀,✀1 2 -3.5尀n]转化成L = [[0,-1,1.5],[1,2,-3.5]]
2024年11月19日 21:20
有3个网友回答
网友(1):

>>> [[float(f) for f in a.split()] for a in L]
[[0.0, -1.0, 1.5], [1.0, 2.0, -3.5]]

这样吗?

网友(2):

L=[[float(i) if i.find('.')>-1 else int(i) for i in x.split()] for x in L]

网友(3):