I'm looking for a way how can I compress python code.
Ideal solution converts
def sum_of_two(first, second):
''' sum of two'''
return first + second
Into
def a(b,c):
return b+c
Any ideas of ways how I can do it?
Thanks
I'm looking for a way how can I compress python code.
Ideal solution converts
def sum_of_two(first, second):
''' sum of two'''
return first + second
Into
def a(b,c):
return b+c
Any ideas of ways how I can do it?
Thanks