Created
July 27, 2018 20:39
-
-
Save madebyollin/d1d7cb8abe65d8c8fa2c8db0c214dd3b to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env python | |
filename = "output.txt" | |
with open(filename, 'w') as fout: | |
x = 0 | |
for x in range(5): | |
fout.write(""" def function_number{}(): \n | |
""".format(x)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment