我应该使用“camel case”吗?或者Python中的下划线?

发布于 2024-12-27 12:41:10 字数 189 浏览 1 评论 0原文

那么哪个更好,为什么?

def my_function():

或者

def myFunction():

So which is better and why?

def my_function():

or

def myFunction():

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

我们的影子 2025-01-03 12:41:10

对于与 Python 风格指南相关的所有内容:我建议您阅读 PEP8

回答你的问题:

函数名称应小写,单词之间用
根据需要添加下划线以提高可读性。

for everything related to Python's style guide: i'd recommend you read PEP8.

To answer your question:

Function names should be lowercase, with words separated by
underscores as necessary to improve readability.

幻梦 2025-01-03 12:41:10

PEP 8 建议使用第一种形式以提高可读性。您可以在此处找到它。

函数名称应小写,单词之间用
根据需要添加下划线以提高可读性。

PEP 8 advises the first form for readability. You can find it here.

Function names should be lowercase, with words separated by
underscores as necessary to improve readability.

橘亓 2025-01-03 12:41:10

函数名称应小写,单词之间用
必要时加下划线以提高可读性。允许混合大小写
仅在已经成为流行风格的情况下

查看其已得到解答,单击此处

Function names should be lowercase, with words separated by
underscores as necessary to improve readability. mixedCase is allowed
only in contexts where that's already the prevailing style

Check out its already been answered, click here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文