Skip to content

Instantly share code, notes, and snippets.

@jordanhudgens
Last active March 20, 2018 03:48
Show Gist options
  • Save jordanhudgens/a9b9ffdc995fe177531731efbc9979fb to your computer and use it in GitHub Desktop.
Save jordanhudgens/a9b9ffdc995fe177531731efbc9979fb to your computer and use it in GitHub Desktop.
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