I am developing python code in pycharm
I am looking to define a skeleton of function definition in python.
What I am looking for is that each time I initiate a function definition, say:
def func1(arg1,arg2):
and press enter, it should automatically create the below skeleton for me to edit inside of it.
def func1(arg1,arg2):
try:
return(1)
except Exception as e:
print(e)
Is that possible in PyCharm?





