方案 - 列表中的值
我有列表列表:
((1500) (2500) (3500))
现在,我想使用每个列表中的值。当我这样做时(汽车列表),它给了我(1500)-列表,但我想要值1500(int)。
我该怎么做呢?
感谢你!
I have list of lists:
((1500) (2500) (3500))
Now, I want to use the values in each list. when I do (car list), It give me (1500) - list, but I want the value 1500 (int).
How can I do it?
Thank u!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要包含 1500 的列表中的
car
,这将是该值。类似于:
这足以满足第一个值。正如拉斯曼指出的那样,还有其他方法可以获取所有其他值。
You need the
car
of the list containing 1500, which will be the value.Something like:
This suffices for the first value. There are other ways to go about it to get all the other values, as larsman pointed out.