您好,我想咨询阅读python语言参考手册时遇到的相关问题,
看到该邮箱地址,不知道是否可以用来咨询此类问题?或请推荐咨询的渠道。

《python语言参考手册》--数据模型章节--静态方法对象:
“避免函数对象转换为方法对象”是指在实例对象在获取属性时,避免类中定义的方法(即:函数对象)转换为实例方法么?
为什么在python中,会设置这种在类中将用户定义的函数封装起来从而防止其转换为实例方法,这种封装一般应用在哪些情况下呢?

Hello, I would like to consult related issues encountered when reading the python language reference manual,
Seeing the email address, I wonder if it can be used to consult such questions? Or please recommend a channel for consultation.

"Python Language Reference Manual"-Data Model Chapter-Static Method Object:
"Avoid converting function objects into method objects" refers to avoiding the methods defined in the class (ie: function objects) from being converted into instance methods when the instance object gets properties?
Why is it set up in python to encapsulate user-defined functions in a class to prevent them from being converted into instance methods? In what situations is this encapsulation generally used?