Files
python-crash-course/basics/naming_convention.py
2024-09-22 09:33:04 +00:00

12 lines
220 B
Python

"""
Basic naming conventions in python
"""
# Do's
# Use lowercase and snakecase for functions and methods i.e. def save_file()
def save_file(file: str) -> None:
with open(file, "w") as F:
F.write()
#Dont's