def create_file(path: str, content: str): """Create txt file with specific content""" with open(f"{path}", "w") as file: file.write(content)