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.
関数は、多くの場合、次の方法で引数に適用されますfunc(arg)。ただし、引数が非常に長い場合 (たとえば、他の関数の組み合わせ)、次の構文を使用するとコードが読みやすくなりますx.sun()。最初の構文から別の構文に切り替えることができるPythonのトリックはありますか。
func(arg)
x.sun()
たとえば、私の特定のケースではx.list()、の代わりに使用できるようにしたいと考えていますlist(x)。
x.list()
list(x)