Moved problems till e045.py to Python 2.
This commit is contained in:
20
python/lib_create_templates.py
Normal file
20
python/lib_create_templates.py
Normal file
@@ -0,0 +1,20 @@
|
||||
FROM = 56
|
||||
TILL = 66
|
||||
|
||||
template = """
|
||||
def euler_XXX():
|
||||
return 0
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
print("eXXX.py: " + str(euler_XXX()))
|
||||
assert(euler_XXX() == 0)
|
||||
"""
|
||||
|
||||
|
||||
for i in range(FROM, TILL):
|
||||
e = "0" + str(i)
|
||||
filename = "e" + e + ".py"
|
||||
with open(filename, "w") as f:
|
||||
s = template.replace("XXX", e)
|
||||
f.write(s)
|
||||
Reference in New Issue
Block a user