Coding Conventions
| prefix | variable type |
|---|---|
| i | integer |
| f | float |
| b | logical |
| s | string |
| dt | datetime |
| l | list |
| o | class object |
| dict | dictionary |
| x | variable associated with xml |
| sl | variable associated with Slicer |
| q | variable associate with Python Qt |
| compound variables | |
| ls | list of strings |
| li | list of integers |
| lls | list of list of strings |
| Examples | |
|---|---|
| iNumberOfCats | a scalar integer |
| oPerson | an object of class Person |
| loPets | list of objects of class Pets |