Last active
March 20, 2018 03:48
-
-
Save jordanhudgens/a9b9ffdc995fe177531731efbc9979fb to your computer and use it in GitHub Desktop.
This file contains hidden or 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
file_builder = open("logger.txt", "w+") | |
for i in range(50000): | |
file_builder.write(f"I'm on line {i + 1}\n") | |
file_builder.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment