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)