我应该使用“camel case”吗?或者Python中的下划线?
那么哪个更好,为什么?
def my_function():
或者
def myFunction():
So which is better and why?
def my_function():
or
def myFunction():
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对于与 Python 风格指南相关的所有内容:我建议您阅读 PEP8。
回答你的问题:
for everything related to Python's style guide: i'd recommend you read PEP8.
To answer your question:
PEP 8 建议使用第一种形式以提高可读性。您可以在此处找到它。
PEP 8 advises the first form for readability. You can find it here.
查看其已得到解答,单击此处
Check out its already been answered, click here