我是 python 的初学者,我有一个这样的列表
[{'status': 1L, 'permalink': 'said', 'title': 'a', 'author': 'said', 'content': 'a', 'created_on': datetime.datetime(2013, 2, 10, 17, 46, 9), 'type': 1L, 'id': 1L},
{'status': 1L, 'permalink': 'said', 'title': 'hello', 'author': 'said', 'content': 'this is my first post', 'created_on': datetime.datetime(2013, 2, 10, 17, 48, 5), 'type': 2L, 'id': 2L}]
我想获得 ID 为 1 的帖子。我该怎么做。我应该使用 for 循环还是有其他简单的方法?我使用 Flask 框架。
例如,我通过调用这样的 url 获得了一个 id,/editpost/1
然后我想获得 id 为 1 的帖子。我该怎么做?还有为什么它是整数 1L 而不是 1?非常感谢。