python的函数如何命名
python中函数的命名规范
函数名一律小写,如有多个单词,用下划线隔开
def run(): pass def run_with_env(): pass
私有函数在函数前加一个下划线_
class Person(): def _private_func(): pass
以上就是python中函数的命名规范,更多学习内容,请点击云海天教程网。
来源:PY学习网:原文地址:https://www.py.cn/article.html
python中函数的命名规范
函数名一律小写,如有多个单词,用下划线隔开
def run(): pass def run_with_env(): pass
私有函数在函数前加一个下划线_
class Person(): def _private_func(): pass
以上就是python中函数的命名规范,更多学习内容,请点击云海天教程网。
来源:PY学习网:原文地址:https://www.py.cn/article.html