Difference between revisions of "RidgeRun Developer Manual/Coding Styles/Python"

From RidgeRun Developer Connection
Jump to: navigation, search
(Introduction to 'Python' Coding Styles)
(Good practices)
Line 16: Line 16:
  
  
 +
== Code Layout ==
  
 +
== Naming ==
  
  

Revision as of 15: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