Last active
November 27, 2023 03:02
-
-
Save bopjiang/a554a010a674b1ea842ec87e11dff18d to your computer and use it in GitHub Desktop.
python_lib
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def write_list_to_file(filename, my_list): | |
with open(filename, 'w') as file: | |
file.writelines(str(item) + '\n' for item in my_list) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment