This question already has answers here:
What is the meaning of single and double underscore before an object name?
(17个答案)
5年前关闭。
函数中是否有以双下划线开头和结尾的术语(例如 init 或 getattr )?我了解他们的目的,只是想知道是否有一个很好的方式来提及他们!谢谢!
(17个答案)
5年前关闭。
函数中是否有以双下划线开头和结尾的术语(例如 init 或 getattr )?我了解他们的目的,只是想知道是否有一个很好的方式来提及他们!谢谢!
最佳答案
Python docs将以双下划线开头和结尾的函数或属性称为"magic objects"
或"magic attributes"
。
关于python - 双下划线功能有名称吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31217511/
10-10 05:51