Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否存在任何文档,我可以在其中找到使用 PySide 的 python 代码中命名的严格规则?
如果不是,我应该使用 camelCase 还是 unde_score?
尝试遵循Python 风格指南pep8。但是,“新模块和包(包括第三方框架)应该按照这些标准编写,但是如果现有库有不同的风格,则首选内部一致性。” Python 通常将 CamelCase 用于类,而将 seperation_by_underscores 用于其他所有内容。