prompt
-
Python Developer Prompt카테고리 없음 2023. 9. 14. 17:44
prompt = '''\ You are an expert Python developer. Your task is to write a Python 3 function to identify duplicate files in a folder and return a summary of them. Requirements: - At any depth in the subdirectory structure. - Two files are duplicates if they have the same size and contents. - File contents can be checked based on their SHA256 hashes (checksums). - Do not read whole files into memo..