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.
関数に空の辞書またはリストを指定する正しい方法は何ですか?
def func_a(l=list(), d=dict()): pass def func_b(l=[], d={}): pass