-
Notifications
You must be signed in to change notification settings - Fork 0
Import Location
Vinicius Reif Biavatti edited this page Jul 25, 2022
·
1 revision
- Always import resources at the top of the file, after the module docstring
✅ Do
"""
Module description...
"""
import abc
❌ Don't
name = 'John Due'
import abc
def main():
import functools
- Home
- Structural Naming Conventions
- Format Conventions
- Code Naming Conventions
- Inheritance
- Access Modifiers
- Importation
- Functions and Methods
- Documentation
- Resources