""" 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