Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
オブジェクトのリストがあります。そのリスト内のオブジェクトの変数または関数を呼び出したい。(この問題には非常に多くの基本的なキーワードがあるため、これに対する解決策やガイドを見つけるのは非常に困難です!)
例えば:
for each in current_staff_list: print(current_staff_list[each].variable_name)
これを行う正しい構文は何ですか?
eachはすでに適切な要素です:
each
for each in current_staff_list: print(each.variable_name)
Pythonforループは、シーケンスへのインデックスではなく、要素自体を提供します。
for