我正在使用以下iter链来生成列表 -
from itertools import chain
from utils import my_func // custom function written that performs a function.
a = list(chain.from_iterable((u, my_func(u)) for u in MyCustomClass.objects.all()))
我希望会生成一个列表。
但是,我得到了错误 - NameError: global name 'my_func' is not defined
我做错了什么?