File size: 109 Bytes
371198a
 
 
 
1
2
3
4
5
def save_function(code):
    function = open('output.py', 'w')
    function.write(code)
    function.close()