Skip to content

Latest commit

History

History
16 lines (10 loc) 路 320 Bytes

file-naming.md

File metadata and controls

16 lines (10 loc) 路 320 Bytes

Python module Convention > Package Naming

snake_case

  • Should be in lowercase.
  • If the name contains multiple words, an underscore (_) should separate it.E.g. expression_engine
  • The name should resonate with the class or methods inside the module
from math import factorial
class Car:
    ...