複数の属性を持つユーザー定義のPythonオブジェクトのリストで関数を繰り返して呼び出す方法はありますか?それがEntryと呼ばれ、属性名と年齢が設定されているとしましょう。
私が何かを言うことができるように
def func(name, age):
//do something
def start(list_of_entries)
map(func, list_of_entries.name(), list_of_entries.age())
//but obviously the .name and .age of the object, not the iterable
//these are the only two attributes of the class
functools.partial()の使用を考えていましたが、この場合でもそれが有効かどうかはわかりませんでした。