タプルのリストをリストのリストに変換するこの関数を作成しました。これを行うためのよりエレガントな/Pythonicな方法はありますか?
def get_list_of_lists(list_of_tuples):
list_of_lists = []
for tuple in list_of_tuples:
list_of_lists.append(list(tuple))
return list_of_lists