有一个iterator对象,是否有比列表理解更快,更好或更正确的方法来获取迭代器返回的对象的列表?
iterator
user_list = [user for user in user_iterator]
list(your_iterator)