RidgeRun Developer Manual/Coding Styles/Python: Difference between revisions

From RidgeRun Developer Wiki
Line 16: Line 16:




== Code Layout ==


== Naming ==





Revision as of 20:56, 21 June 2021





Previous: Coding Styles/C++ Index Next: Coding Styles/Javascript





Introduction to 'Python' Coding Styles

When writing Python code, RidgeRun tries to follow PEP8 - Style Guide for Python Code. Following we present some of the rules presented in this standard. For more information please visit PEP8.


Good practices

Be consistent with your code

In general, if you are adding code to an existent code, be consistent with the coding standard already being used. If no standard is used then follow this guide.


Code Layout

Naming

Previous: Coding Styles/C++ Index Next: Coding Styles/Javascript